/* Define the font faces */
@font-face {
  font-family: "JUST Sans";
  src: url("../Assets/Fonts/just_sans/Web Fonts/JUST Sans Regular.woff2")
      format("woff2"),
    url("../Assets/Fonts/just_sans/Web Fonts/JUST Sans Regular.woff")
      format("woff");
  font-weight: 400;
  font-style: normal;
}

/* Example for Bold (if you have it) */
@font-face {
  font-family: "JUST Sans";
  src: url("../Assets/Fonts/just_sans/Web Fonts/JUST Sans Bold.woff")
    format("woff");
  font-weight: 700;
  /* 700 */
  font-style: normal;
}

@font-face {
  font-family: "JUST Sans";
  src: url("../Assets/Fonts/just_sans/Web Fonts/JUST Sans Medium.woff")
    format("woff");
  font-weight: 500;
  /* 700 */
  font-style: normal;
}

@font-face {
  font-family: "JUST Sans";
  src: url("../Assets/Fonts/just_sans/Web Fonts/JUST Sans ExBold.woff")
    format("woff");
  font-weight: 900;
  /* 700 */
  font-style: normal;
}

/* Example for Italic (if you have it) */
@font-face {
  font-family: "JUST Sans";
  src: url("../Assets/Fonts/just_sans/Web Fonts/JUST Sans Italic.woff")
    format("woff");
  font-weight: normal;
  /* 400 */
  font-style: italic;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-Thin.ttf")
    format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-ExtraLight.ttf")
    format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-Light.ttf")
    format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-Regular.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-Medium.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-SemiBold.ttf")
    format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-Bold.ttf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-ExtraBold.ttf")
    format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-Black.ttf")
    format("truetype");
  font-weight: 900;
  font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    overflow-x: hidden;
}

:root {
  --color-white: #FFFFFF;
  --color-white-25: #FAFAFA;
  --color-white-50: #F2F2F2;
  --color-white-100: #E6E6E6;
  --color-white-200: #CCCCCC;

  --color-black: #000000;
  --color-black-50: #0D0D0D;
  --color-black-100: #1C1C1C;
  --color-black-200: #333333;
  --color-black-250: #BFBFBF;
  --color-black-400: #666666;
  --color-black-500: #808080;

  --color-yellow: #FFD332;
  --color-blue-500: #0080FF;
  --color-Orange-500: #FF6000;
  --color-red: #D92D3A;
  --color-green-700: #015845;
}

/* =====================================================
   HEADER STYLES
   ===================================================== */
.logo img {
    height: auto;
    width: auto;
    max-height: 32px; 
}

/* Header Styles */
.header-wrapper {
  width: 100%;
  z-index: 999;
  position: relative;
  
  top: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  transition: all 0.3s ease;
}

/* Navigation */
.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 100px;
  background: transparent;
  z-index: 9999;
  position: relative;
  height: 68px;
  transition: all 0.3s ease;
  max-width: 1920px;
  margin: auto;
}

/* When scrolled → becomes fixed */
.header-wrapper.scrolled {
  position: fixed;
  background: var(--color-white);
  border-bottom: 1px solid #c1c4c8;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Push hero content below header */
/* .hero-section {
  padding-top: 90px;   
} */

/* Add a scroll class for when the user scrolls
.header-wrapper.scrolled {
  border-bottom: 1px solid var(--Neutral-colors-Default-Borders, #c1c4c8);
  background: var(--Neutral-colors-White, #fff);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
} */

.header-wrapper.scrolled .nav-item {
  color: var(--color-black);
}

.header-wrapper.scrolled .cta-button {
  background: var(--color-green-700);
}

.header-wrapper.scrolled .cta-text {
  color: var(--color-white);
}

.header-wrapper.scrolled .menu-toggle span {
  background-color: #121212;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  white-space: nowrap;
  display: inline-block;
  cursor: pointer !important;
}

.logo img {
  height: auto;
  width: auto;
  max-height: 32px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.nav-item-wrapper {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.dropdown-arrow {
  width: 16px;
  height: 16px;
  margin-left: 5px;
  vertical-align: middle;
}

.services-arrow, .products-arrow {
  width: 16px;
  height: 16px;
  margin-left: 5px;
  vertical-align: middle;
  transition: filter 0.3s ease;
  filter: brightness(0); 
}

.header-wrapper.scrolled .services-arrow, .header-wrapper.scrolled .products-arrow {
  filter: brightness(0);
}

.nav-links img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

.dropdown-arrow{
    width:16px;
    height:auto;
    margin-left:6px;
    cursor:pointer;
    background:transparent;
    border:none;
    display:block;
}

.dropdown{
    position: relative;
}

.services-menu h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 160%;
    text-transform: uppercase;
    color: var(--color-black-500);
    text-decoration: none;
}

.services-menu h2{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 2;
    color: var(--color-black-100);
    text-decoration: none;
}

/* Services Dropdown */
.services-dropdown{
  position:relative;
}

.services-menu a {
    text-decoration: none;
}

.services-menu{
  position:absolute;
  top:35px;
  left:0;
  width:382px;
  height: 134px;
  background: var(--color-white);
  border-radius:8px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  display:none;
  flex-direction:column;
  padding:20px 30px;
}

.services-menu.show{
  display:flex;
}

/* Products Dropdown */
.products-dropdown{
  position:relative;
}

.products-menu{
  position:absolute;
  top:35px;
  left:0;
  width:500px;
  height: 200px;
  padding: 20px 30px;
  background: var(--color-white);
  border-radius:8px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  display:none;
}

.products-menu.show{
  display:flex;
}

.menu-column {
    padding-right: 50px;
}

.menu-column a{
    font-family: 'Inter', sans-serif;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--color-black-100);
    font-size: 18px;
    line-height: 2.3;
}

.menu-column1 a{
    font-family: 'Inter', sans-serif;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--color-black-100);
    font-size: 18px;
    line-height: 2.3;
}

.dropdown-menu a:hover{
    background:#f5f5f5;
}

.dropdown-menu.show{
    display:flex;
}

/* Menu Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  outline: none;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-black);
  margin: 5px 0;
  border-radius: 3px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out,
    background-color 0.3s ease;
}

/* Navigation Links */
.nav-item {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--color-black);
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: letf;
    text-decoration: none;
}

.nav-item:hover {
  /* color: var(--primary-color); */
  transform: translateY(-2px);
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 169px;
    height: 44px;
    padding: 12px 30px;
    background: var(--color-green-700);
    color: var(--color-white);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
  /* background-color: var(--primary-color); */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile CTA button - hidden by default on desktop */
.mobile-cta {
  display: none;
}

.desktop-only {
  display: block;
}

.cta-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 135%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: var(--color-white);
}

/* Responsive Styles for Header */
@media screen and (max-width: 1440px) {
  .nav-header {
    padding: 10px 40px;
  }
}

@media screen and (max-width: 1200px) {
  .nav-header {
    padding: 12px 40px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-item {
    font-size: 15px;
    text-align: left;
  }

  .cta-button {
    width: 160px;
    padding: 10px 25px;
  }

  .cta-text {
    font-size: 15px;
  }

  .logo img {
    max-height: 30px;
  }

  .header-wrapper.scrolled {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  }
}

@media screen and (max-width: 992px) {
  .nav-header {
    padding: 10px 2%;
  }

  .nav-links {
    gap: 15px;
  }

  .nav-item {
    font-size: 14px;
    text-align: left;
  }

  .dropdown-arrow {
    width: 14px;
    height: 14px;
    margin-left: 4px;
  }

  .nav-links img {
    width: 14px;
    height: 14px;
  }

  .cta-button {
    width: 140px;
    padding: 8px 20px;
    height: 40px;
  }

  .cta-text {
    font-size: 14px;
  }

  .logo img {
    max-height: 28px;
  }

  .header-wrapper.scrolled {
    border-bottom-width: 1px;
  }
}

@media screen and (min-width: 320px) and (max-width: 768px) {
    /* 1. Make the dropdown menus full width and static */
    .services-menu, 
    .products-menu {
        position: static;     /* Remove the "floating" behavior */
        width: 100% !important; /* Take up full width of the container */
        height: auto;         /* Let the content define the height */
        padding: 10px 15px;   /* Reduce padding for smaller screens */
        box-shadow: none;     /* Optional: remove shadow for a cleaner look */
        border-radius: 0;
    }

    /* 2. Fix the link alignment inside the menu */
    .menu-column, 
    .menu-column1 {
        padding-right: 0;     /* Remove large right padding */
        display: flex;
        flex-direction: column;
    }

    .menu-column a, 
    .menu-column1 a {
        font-size: 16px;      /* Slightly smaller text for mobile */
        padding: 8px 10px;    /* Better spacing for touch targets */
        line-height: 1.5;     /* Tighten up the height */
        display: block;
        width: 100%;
    }

    /* 3. Handle the 'show' state to ensure it works with flex */
    .services-menu.show, 
    .products-menu.show {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
  .nav-header {
    padding: 12px 15px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-white-25);
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    gap: 15px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, display 0.1s linear;
  }

  .header-wrapper.scrolled .nav-links {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #e5e5e5;
  }

  .nav-links.active {
    display: flex;
    min-width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    row-gap: 1.25rem;
    opacity: 1;
    transform: translateY(0);
  }
  .services-arrow.scrolled {
    color: #000;
  }

  .nav-item-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .dropdown-arrow {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .mobile-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 10px;
  }

  /* .mobile-cta .cta-text {
    color: #0;
  } */

  .cta-button {
    width: 100%;
  }

  /* Hamburger menu animation */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--color-black);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--color-black);
  }

  .logo img {
    max-height: 26px;
  }
}

@media screen and (max-width: 576px) {
  .nav-header {
    padding: 10px 12px;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    margin: 4px 0;
  }

  .logo img {
    max-height: 24px;
  }

  .nav-links {
    padding: 15px;
  }

  .nav-item {
    font-size: 16px;
    padding: 8px 0;
    width: 100%;
    text-align: left;
    display: block;
  }

  .mobile-cta {
    padding: 10px 20px;
    margin-top: 8px;
  }

  .mobile-cta .cta-text {
    font-size: 15px;
  }

  .header-wrapper.scrolled {
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  }

  .header-wrapper.scrolled .nav-links {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

@media screen and (max-width: 480px) {
  .logo {
    font-size: 22px;
  }

  .nav-header {
    padding: 8px 10px;
  }

  .logo img {
    max-height: 26px;
  }

  .menu-toggle span {
    width: 20px;
    margin: 3px 0;
  }

  .nav-links {
    padding: 12px;
    gap: 12px;
  }

  .nav-item {
    font-size: 15px;
    text-align: left;
  }

  .mobile-cta {
    padding: 8px 15px;
    height: 40px;
  }

  .mobile-cta .cta-text {
    font-size: 14px;
  }

  .header-wrapper.scrolled {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    background: #fff;
  }
}

@media screen and (max-width: 375px) {
  .logo img {
    max-height: 24px;
  }

  .nav-header {
    padding: 8px;
  }

  .menu-toggle span {
    width: 18px;
    height: 1.5px;
  }

  .nav-item {
    font-size: 14px;
    text-align: left;
  }

  .mobile-cta {
    height: 38px;
  }

  .mobile-cta .cta-text {
    font-size: 13px;
  }
}

@media screen and (max-width: 320px) {
  .logo img {
    max-height: 18px;
  }

  .nav-header {
    padding: 6px;
  }

  .menu-toggle span {
    width: 16px;
    height: 1.5px;
    margin: 3px 0;
  }

  .nav-links {
    padding: 10px;
  }

  .nav-item {
    font-size: 13px;
    text-align: left;
  }

  .mobile-cta {
    height: 36px;
    padding: 6px 12px;
  }

  .mobile-cta .cta-text {
    font-size: 12px;
  }

  .hero-cta,
  .hero-secondary-cta {
    min-width: 100px;
    padding: 6px 10px;
  }

  .hero-cta .hero-cta-text,
  .hero-secondary-cta .hero-cta-text {
    font-size: 12px;
  }
}

/* 
/* ========================================
   DARK THEME
   ========================================
[data-theme="dark"] body {
    background: #0d0d0d;
}

[data-theme="dark"] .header-wrapper {
    background: transparent;
    border-bottom: 1px solid transparent;
}

[data-theme="dark"] .header-wrapper:not(.scrolled) .logo img {
    content: url("../Assets/images/KM_SOFT_dark.svg");
}

[data-theme="dark"] .nav-header {
    background: transparent;
}

    .nav-links img {
        filter: invert(0);
    }
[data-theme="dark"] .nav-item {
    color: #FFFFFF;
}

[data-theme="dark"] .nav-item:hover {
    color: #ffffff;
}

[data-theme="dark"] .dropdown-arrow {
    filter: invert(1);
}

[data-theme="dark"] .nav-links img {
    filter: invert(1);
}

[data-theme="dark"] .menu-toggle span {
    background: #ffffff;
}

[data-theme="dark"] .cta-button {
    background: #ffffff;
    color: #000;
    border: none;
}

[data-theme="dark"] .cta-button:hover {
    background: #e0e0e0;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .cta-text {
    color: #000;
}

[data-theme="dark"] .nav-item-wrapper {
    border-bottom-color: #333;
} */












/* ==================================
    Asthi care start 
    ===============================*/
.hero{
    width:100%;
    max-width:1920px;
    height:860px;
    margin:0 auto;
    background-image:url("../Assets/trainer/Asthi1.webp");
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

/* blur overlay */
.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(255,255,255,0.4);
    backdrop-filter:blur(3px);
    z-index:0;
}

/* center content */
.Center-logo{
    max-width:837px;
    width:90%;
    text-align:center;
    position:relative;
    z-index:1;
}

/* logo image */
.Center-logo img{
    width:100%;
    max-width:474px;
    display:block;
    margin:-155px auto -160px auto;
}

/* text */
.Center-logo p{
    max-width:837px;
    font-family: "JUST Sans", sans-serif;
    font-weight:500;
    font-size:20px;
    line-height:160%;
    text-align:center;
    color:#4D4D4D;
    margin:0 auto;
}



/* ===============================
   TABLET & SMALL LAPTOP (1440px)
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width:1440px) and (max-width:1919px){
.hero{
    height: 760px;
}

.hero::before {
    width: 100%;
}

.Center-logo{
    max-width:700px;
}

.Center-logo img{
    width:400px;
    margin:-120px auto -120px auto;
}

.Center-logo p{
    font-size:18px;
    max-width:650px;
}
}

/* ===============================
   TABLET & SMALL LAPTOP (1200px)
================================ */
/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px){
.hero {
        width: 100%;
        height: 600px; 
        background-size: cover;
        background-position: center;
        padding: 40px 20px;
    }

    .Center-logo {
        max-width: 90%;
        height: auto;
        margin-left: 0;
    }

    .Center-logo img {
        width: 320px; 
        margin: -100px auto -80px auto;
    }

    .Center-logo p {
        max-width: 600px;
        font-size: 18px;
        line-height: 1.5;
        padding: 0 15px;
    }

}

/* ===============================
   TABLET & SMALL LAPTOP (1024px)
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {

.hero {
        width: 100%;
        height: 600px; 
        background-size: cover;
        background-position: center;
        padding: 40px 20px;
    }

    .Center-logo {
        max-width: 90%;
        height: auto;
        margin-left: 0;
    }

    .Center-logo img {
        width: 320px; 
        margin: -100px auto -80px auto;
    }

    .Center-logo p {
        max-width: 600px;
        font-size: 18px;
        line-height: 1.5;
        padding: 0 15px;
        margin-top: -95px;
    }

}

/* ===============================
   EXTRA SMALL DEVICES (768px)
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px){

.hero {
        width: 100%;
        height: 500px;
        padding: 20px;
        background-size: cover;
        background-position: center;
    }

    .hero::before {
        backdrop-filter: blur(2px); 
    }

    .Center-logo {
        max-width: 100%;
        height: auto;
        padding: 0 20px;
        margin-left: 0;
    }

    .Center-logo img {
        width: 260px; 
        margin: -60px auto -40px auto; 
    }

    .Center-logo p {
        max-width: 100%;
        height: auto;
        font-size: 16px; 
        line-height: 1.5;
        padding: 0 10px;
        margin-top: -80px;
    }       
}

/* ===============================
   EXTRA SMALL DEVICES (425px)
================================ */
/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px){
.hero {
        width: 100%;
        height: 420px;
        padding: 0 20px;
        background-size: cover;
        background-position: center;
    }

    .hero::before {
        backdrop-filter: blur(2px);
    }

    .Center-logo {
        max-width: 100%;
        height: auto;
        padding: 0 15px;
        margin-left: 0;
    }

    .Center-logo img {
        width: 240px; 
        margin: -60px auto -40px auto;
    }

    .Center-logo p {
        max-width: 100%;
        height: auto;
        font-size: 14px; 
        line-height: 1.5;
        padding: 0 10px;
        margin-top: -80px;
    }
}

/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {
.hero {
        width: 100%;
        height: 420px;
        padding: 0 20px;
        background-size: cover;
        background-position: center;
    }

    .hero::before {
        backdrop-filter: blur(2px);
    }

    .Center-logo {
        max-width: 100%;
        height: auto;
        padding: 0 15px;
        margin-left: 0;
    }

    .Center-logo img {
        width: 240px; 
        margin: -60px auto -40px auto;
    }

    .Center-logo p {
        max-width: 100%;
        height: auto;
        font-size: 14px; 
        line-height: 1.5;
        padding: 0 10px;
        margin-top: -80px;
    }
}

/* ===============================
   EXTRA SMALL DEVICES (375px)
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px){

 .hero {
        width: 100%;
        height: 500px; 
        background-size: cover;
        background-position: center;
        padding: 20px;
    }

    .hero::before {
        backdrop-filter: blur(2px);
        background: rgba(255, 255, 255, 0.5);
    }

    .Center-logo {
        max-width: 100%;
        height: auto;
        padding: 0 15px;
        margin-left: 0;
    }

    .Center-logo img {
        width: 220px; 
        margin: 0 auto 20px auto; 
    }

    .Center-logo p {
        max-width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.5;
        padding: 0 10px;
        margin-top: -80px;
    }

}

/* ===============================
   EXTRA SMALL DEVICES (320px)
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {
.hero {
        min-height: 500px; 
        padding: 40px 16px;
    }

    .Center-logo {
        padding: 0 12px;
        margin-left: 0;
    }

    .Center-logo img {
        width: 220px;      
        margin: 0 auto 20px auto; 
    }

    .Center-logo p {
        font-size: 14px;   
        line-height: 1.5;
        height: auto; 
        margin-top: -80px;     
    }

}










/* ==================================
    Ecosysystem section 
    ===============================*/
.ecosystem {
    max-width: 1520px;
    margin: 0 auto;
    padding-top: 100px;
    display: grid;
    grid-template-columns: 1.2fr ;
    gap: 120px;
}

/* LEFT TITLE */
.ecosystem-text1 h5 {
    width: 865px;
    height: 120px;
    font-family: JUST Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 46px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #262626;
    margin: 0;
}

/* RIGHT CONTENT */
.ecosystem-text2 h2 {
    width: 749px;
    height: 145px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #404040;
    margin-bottom: 50px;
    margin-left: 765px;
}

/* 3 COLUMN INFO ROW */
.ecosystem-text3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

/* CLIENT */
.Client p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #808080;
    margin: 6px 0;
}

.Client span {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #262626;
}

/* ROLE */
.role p {
    font-size: 18px;
    color: #808080;
    margin-bottom: 10px;
}

.role span {
    display: block;
    font-size: 18px;
    line-height: 1.6;
    color: #262626;
}

/* APP PILLS (important fix) */
.app-main {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.app-main span {
    border-radius: 100px;
    border: 1px solid #E6E6E6;
    padding: 20px 20px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #262626;
    background: #fff;
}

.app-main span:hover {
    transform: scale(1.09);
    transition: 0.3s;
}

/* ===============================
   1440px RESPONSIVE
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {

    .ecosystem {
        max-width: 1200px;   
        padding: 80px 40px 0;
        gap: 80px;          
    }

    /* LEFT TITLE */
    .ecosystem-text1 h5 {
        width: 100%;        
        max-width: 700px;
        height: auto;        
        font-size: 40px;    
        line-height: 1.3;
    }

    /* RIGHT CONTENT */
    .ecosystem-text2 h2 {
        width: 100%;       
        max-width: 650px;
        height: auto;        
        font-size: 17px;
        margin-left: 0;     
        margin-bottom: 40px;
    }

    .ecosystem-text3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;           
    }

    .Client p,
    .role p,
    .role span {
        font-size: 16px;
        line-height: 1.5;
    }

    .app-main span {
        padding: 14px 16px; 
        font-size: 14px;
    }
}

/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {

    .ecosystem {
        max-width: 100%;
        padding: 80px 40px 0 40px;
        gap: 60px;
        grid-template-columns: 1fr; 
    }

    .ecosystem-text1 h5 {
        width: 100%;
        height: auto;
        font-size: 36px;
        line-height: 1.3;
    }

    .ecosystem-text2 h2 {
        width: 100%;
        height: auto;
        font-size: 17px;
        margin-left: 0;
        margin-bottom: 40px;
    }

    .ecosystem-text3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .Client p,
    .role p,
    .role span {
        font-size: 16px;
    }

    .app-main {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
    }

    .app-main span {
        padding: 14px 18px;
        font-size: 15px;
    }
}

/* ===============================
   TABLET (1024px)
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {

    .ecosystem {
        max-width: 100%;
        padding: 80px 40px 0 40px;
        gap: 60px;
        grid-template-columns: 1fr; 
    }

    .ecosystem-text1 h5 {
        width: 100%;
        height: auto;
        font-size: 36px;
        line-height: 1.3;
    }

    .ecosystem-text2 h2 {
        width: 100%;
        height: auto;
        font-size: 17px;
        margin-left: 0;
        margin-bottom: 40px;
    }

    .ecosystem-text3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .Client p,
    .role p,
    .role span {
        font-size: 16px;
    }

    .app-main span {
        padding: 14px 18px;
        font-size: 15px;
    }
}

/* ===============================
   TABLET (768px)
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {

    .ecosystem {
        max-width: 100%;
        padding: 60px 24px 0 24px;
        gap: 60px;
    }

    .ecosystem-text1 h5 {
        width: 100%;       
        height: auto; 
        font-size: 32px;
        line-height: 1.3;
    }

    .ecosystem-text2 h2 {
        width: 100%;       
        height: auto;     
        margin-left: 0;   
        font-size: 16px;
        margin-bottom: 40px;
    }

    .ecosystem-text3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .Client p,
    .role p,
    .role span {
        font-size: 16px;
    }

    .app-main {
        gap: 10px;
    }

    .app-main span {
        padding: 14px 16px;  
        font-size: 14px;
    }
}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {

.ecosystem {
        max-width: 100%;
        padding: 40px 16px;
        gap: 40px;
        grid-template-columns: 1fr;
    }

    .ecosystem-text1 h5 {
        width: 100%;
        height: auto;
        font-size: 28px;
        line-height: 1.3;
    }

    .ecosystem-text2 h2 {
        width: 100%;
        height: auto;
        font-size: 16px;
        margin-left: 0;
        margin-bottom: 30px;
    }

    .ecosystem-text3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .Client p {
        font-size: 16px;
    }

    .role p {
        font-size: 16px;
    }

    .role span {
        font-size: 16px;
    }

    .app-main {
        gap: 10px;
    }

    .app-main span {
        padding: 12px 16px;
        font-size: 14px;
    }
}


/* ===============================
   425px RESPONSIVE
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {

    .ecosystem {
        max-width: 100%;
        padding: 40px 16px;
        gap: 40px;
        grid-template-columns: 1fr;
    }

    .ecosystem-text1 h5 {
        width: 100%;
        height: auto;
        font-size: 28px;
        line-height: 1.3;
    }

    .ecosystem-text2 h2 {
        width: 100%;
        height: auto;
        font-size: 16px;
        margin-left: 0;
        margin-bottom: 30px;
    }

    .ecosystem-text3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .Client p {
        font-size: 16px;
    }

    .role p {
        font-size: 16px;
    }

    .role span {
        font-size: 16px;
    }

    .app-main {
        gap: 10px;
    }

    .app-main span {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* ===============================
   375px RESPONSIVE
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {
    
    .ecosystem {
        max-width: 100%;
        padding: 40px 16px 0 16px;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ecosystem-text1 h5 {
        width: 100%;
        height: auto;
        font-size: 26px;
        line-height: 1.3;
    }

    .ecosystem-text2 h2 {
        width: 100%;
        height: auto;
        font-size: 15px;
        margin-left: 0;
        margin-bottom: 30px;
    }

    .ecosystem-text3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .Client p {
        font-size: 15px;
    }

    .role p {
        font-size: 15px;
    }

    .role span {
        font-size: 15px;
    }

    .app-main {
        gap: 10px;
    }

    .app-main span {
        padding: 12px 16px;
        font-size: 14px;
    }
}


/* ===============================
   320px RESPONSIVE
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px)  {

    .ecosystem {
        max-width: 100%;
        padding: 40px 16px 0;
        gap: 40px;
        grid-template-columns: 1fr;
    }

    .ecosystem-text1 h5 {
        width: 100%;
        height: auto;
        font-size: 24px;
        line-height: 1.3;
    }

    .ecosystem-text2 h2 {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.6;
        margin-left: 0;
        margin-bottom: 30px;
    }

    .ecosystem-text3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .Client p {
        font-size: 14px;
        line-height: 1.6;
    }

    .role p {
        font-size: 14px;
    }

    .role span {
        font-size: 14px;
        line-height: 1.6;
    }

    .app-main {
        gap: 8px;
    }

    .app-main span {
        padding: 10px 14px;
        font-size: 12px;
    }
}















/* ========================================
   IDEAS SECTION
   ======================================== */
.ideas-section {
    width: 100%;
}

.ideas {
    width: 1520px;
    margin: auto;
    display: flex;
    gap: 40px;
    margin-top: 140px;
}

/* Image */

.ideas-img img {
    width: 750px;
    height: 730px;
    object-fit: cover;
    border-radius: 16px;
}

/* Text Card */

.ideas-text {
    width: 750px;
    height: 730px;
    background: #C4DCF5;
    border-radius: 16px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ideas-text span {
    font-family: Inter Display;
    font-weight: 700;
    font-style: Bold;
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 0%;
    text-transform: uppercase;
    text-transform: uppercase;
    color: #0D0D0D;
}

.ideas-text p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    margin-top: 230px;
    color: #262626;
}

/* Link */

.ideas-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    margin-top: auto;
}

.ideas-link h5 {
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 1;
    color: #000000;
}

.ideas-link img {
    width: 28px;
}

.ideas-link:hover {
    opacity: 0.7;
} 

/* ===============================
   1440px RESPONSIVE
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {

    .ideas {
        width: 100%;
        max-width: 1200px;
        margin: 100px auto 0;
        gap: 30px;
        padding: 0 40px;
    }

    .ideas-img img {
        width: 100%;
        height: 600px;
    }

    .ideas-text {
        width: 100%;
        height: 600px;
        padding: 40px;
    }

    .ideas-text span {
        font-size: 30px;
        line-height: 1.3;
    }

    .ideas-text p {
        font-size: 16px;
        margin-top: 240px;
        line-height: 1.6;
    }

    .ideas-link h5 {
        font-size: 16px;
    }

    .ideas-link img {
        width: 24px;
    }
}

/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {

        .ideas {
        width: 100%;
        max-width: 1200px;
        margin: 100px auto 0;
        gap: 30px;
        padding: 0 40px;
    }

    .ideas-img img {
        width: 100%;
        height: 600px;
    }

    .ideas-text {
        width: 100%;
        height: 600px;
        padding: 40px;
    }

    .ideas-text span {
        font-size: 30px;
        line-height: 1.3;
    }

    .ideas-text p {
        font-size: 16px;
        margin-top: 240px;
        line-height: 1.6;
    }

    .ideas-link h5 {
        font-size: 16px;
    }

    .ideas-link img {
        width: 24px;
    }

}

/* ===============================
   1024px RESPONSIVE
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {

    .ideas {
        width: 100%;
        padding: 0 24px;
        margin-top: 80px;
        gap: 32px;
    }

    .ideas-img img {
        width: 100%;
        height: 500px;
        border-radius: 12px;
    }

    .ideas-text {
        width: 100%;
        height: auto;
        padding: 40px 32px;
        border-radius: 12px;
    }

    .ideas-text span {
        font-size: 28px;
        line-height: 1.3;
    }

    .ideas-text p {
        font-size: 16px;
        margin-top: 40px;
        line-height: 1.6;
    }

    .ideas-link {
        margin-top: 32px;
    }

    .ideas-link h5 {
        font-size: 16px;
    }

    .ideas-link img {
        width: 24px;
    }
}

/* ===============================
   768px RESPONSIVE
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {

    .ideas {
        width: 100%;
        gap: 24px;
        margin-top: 80px;
        padding: 0 20px;
    }

    .ideas-img img {
        width: 100%;
        height: 487px;
        border-radius: 12px;
    }

    .ideas-text {
        width: 100%;
        height: auto;
        padding: 32px 24px;
        border-radius: 12px;
    }

    .ideas-text span {
        font-size: 24px;
        line-height: 1.3;
    }

    .ideas-text p {
        font-size: 16px;
        margin-top: 40px;
        line-height: 1.6;
    }

    .ideas-link h5 {
        font-size: 16px;
    }

    .ideas-link img {
        width: 24px;
    }
}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {
        .ideas {
        width: 100%;
        flex-direction: column;
        gap: 24px;
        margin-top: 60px;
        padding: 0 16px;
    }

    .ideas-img img {
        width: 100%;
        height: 300px;
        border-radius: 12px;
    }

    .ideas-text {
        width: 100%;
        height: auto;
        padding: 24px;
        border-radius: 12px;
    }

    .ideas-text span {
        font-size: 22px;
        line-height: 1.3;
    }

    .ideas-text p {
        font-size: 14px;
        margin-top: 24px;
        line-height: 1.6;
    }

    .ideas-link {
        margin-top: 24px;
    }

    .ideas-link h5 {
        font-size: 14px;
    }

    .ideas-link img {
        width: 20px;
    }
}

/* ===============================
   425px RESPONSIVE
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {

    .ideas {
        width: 100%;
        flex-direction: column;
        gap: 24px;
        margin-top: 60px;
        padding: 0 16px;
    }

    .ideas-img img {
        width: 100%;
        height: 300px;
        border-radius: 12px;
    }

    .ideas-text {
        width: 100%;
        height: auto;
        padding: 24px;
        border-radius: 12px;
    }

    .ideas-text span {
        font-size: 22px;
        line-height: 1.3;
    }

    .ideas-text p {
        font-size: 14px;
        margin-top: 24px;
        line-height: 1.6;
    }

    .ideas-link {
        margin-top: 24px;
    }

    .ideas-link h5 {
        font-size: 14px;
    }

    .ideas-link img {
        width: 20px;
    }
}

/* ===============================
   375px RESPONSIVE
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {

    .ideas {
        width: 100%;
        flex-direction: column;
        gap: 24px;
        margin-top: 60px;
        padding: 0 16px;
    }

    .ideas-img img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .ideas-text {
        width: 100%;
        height: auto;
        padding: 24px;
        border-radius: 12px;
    }

    .ideas-text span {
        font-size: 22px;
        line-height: 1.3;
    }

    .ideas-text p {
        font-size: 14px;
        margin-top: 20px;
        line-height: 1.6;
    }

    .ideas-link {
        margin-top: 24px;
    }

    .ideas-link h5 {
        font-size: 14px;
    }

    .ideas-link img {
        width: 20px;
    }
}

/* ===============================
   320px RESPONSIVE
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {

    .ideas {
        width: 100%;
        flex-direction: column;
        gap: 24px;
        margin-top: 60px;
        padding: 0 16px;
    }

    .ideas-img img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .ideas-text {
        width: 100%;
        height: auto;
        padding: 24px;
        border-radius: 12px;
    }

    .ideas-text span {
        font-size: 20px;
        line-height: 1.4;
    }

    .ideas-text p {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 20px;
    }

    .ideas-link {
        margin-top: 24px;
    }

    .ideas-link h5 {
        font-size: 14px;
    }

    .ideas-link img {
        width: 20px;
    }
}













/* ========================================
   problem-solution SECTION
   ======================================== */
.problem-solution {
    width: 100%;
    max-width: 1520px;
    margin: 140px auto 0 auto;
    padding: 0 40px;
}

/* ===== Heading Area ===== */
.pro-sol {
    max-width: 1200px;
    margin: 0 auto 80px 0;
}

.pro-sol h1 {
    font-weight: 700;
    font-size: 36px;
    line-height: 140%;
    text-transform: uppercase;
    color: #0D0D0D;
    margin-bottom: 20px;
}

.pro-sol p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #0D0D0D;
    max-width: 543px;
}

/* ===== Grid Layout (Perfect like your design) ===== */
.problem-section {
    max-width: 1200px;
    margin-left: auto;
    display: grid;
    grid-template-columns: 524px 474px;
    grid-template-rows: auto auto;
    row-gap: 60px;
    align-items: center;
    justify-content: center;
}

/* ===== Image Box (Left Center) ===== */
.problem-image-box {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 524px;
    height: 637px;
    border-radius: 16px;
    background: linear-gradient(
        180deg,
        rgba(245, 196, 196, 0.2) 0%,
        rgba(128, 18, 18, 0.2) 100%
    );
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-left: 190px;
}

.pro-img {
    width: 438px;
    height: 504px;
    object-fit: contain;
}

/* ===== Cards (Right Side) ===== */
.problem-card {
    width: 474px;
    height: 435px;
    border-radius: 16px;
    padding: 40px;
    background: linear-gradient(
        135.43deg,
        #FFFFFF 0%,
        #FAFAFA 32.75%,
        #F5F5F5 65.51%,
        #E6E6E6 99.26%
    );
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.problem1 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 125px;
    margin-left: 130px;
}

.problem2 {
    grid-column: 2;
    grid-row: 2;
    margin-left: 130px;
    margin-top: 60px;
}

/* ===== Icon ===== */
.icon-pro {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* ===== Text Styling ===== */
.problem-card h2 {
    font-weight: 600;
    font-size: 26px;
    line-height: 1.4;
    color: #0D0D0D;
    margin-bottom: 16px;
    margin-top: 70px;
}

.problem-card p {
    font-family: Inter Display;
    font-weight: 700;
    font-style: Bold;
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #333333;
}







.problem-section1 {
    max-width: 1200px;
    margin: 120px auto;
    display: grid;
    grid-template-columns: 474px 524px; 
    grid-template-rows: auto auto;
    row-gap: 270px;
    align-items: center;
    justify-content: center;
}

/* ===== Center Image Box (RIGHT SIDE) ===== */
.problem-image-box1 {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 524px;
    height: 637px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(196, 245, 229, 0.2) 0%, rgba(18, 128, 91, 0.2) 100%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-left: -250px; 
}

/* Fix image class mismatch */
.pro-img {
    width: 438px;
    height: 504px;
    object-fit: contain;
}

/* ===== Cards (LEFT SIDE like screenshot) ===== */
.problem-card {
    width: 474px;
    border-radius: 16px;
    padding: 40px;
    background: linear-gradient(135.43deg, #E6E6E6 0%, #F5F5F5 33.75%, #FAFAFA 66.5%, #FFFFFF 99.26%);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.problem-card:hover {
    background: linear-gradient(135.43deg, #FFFFFF 0%, #FAFAFA 33.75%, #F5F5F5 66.5%, #E6E6E6 99.26%);
    transform: scale(1.02);
    transition: 0.3s;
}

/* Top Floating Card */
.problem3 {
    grid-column: 1;
    grid-row: 1;
    align-self: end; 
    margin-left: -185px;         
}

/* Bottom Floating Card */
.problem4 {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    margin-left: -185px;        
}

/* Icon */
.icon-pro {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Text */
.problem-card h2 {
    font-family: Inter Display;
    font-weight: 500;
    font-style: Medium;
    font-size: 26px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #0D0D0D;
    margin-bottom: 16px;
    margin-top: 45px;
}

.problem-card p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #4A4A4A;
}

/* ===============================
   1440px RESPONSIVE
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {

    .problem-solution {
        max-width: 1200px;
        margin: 120px auto 0 auto;
        padding: 0 24px;
    }

    .pro-sol {
        max-width: 1000px;
        margin: 0 auto 60px 0;
    }

    .pro-sol h1 {
        font-size: 32px;
    }

    .pro-sol p {
        font-size: 16px;
        max-width: 500px;
    }

    .problem-section {
        max-width: 1000px;
        grid-template-columns: 480px 420px;
        row-gap: 50px;
    }

    .problem-image-box {
        width: 480px;
        height: 580px;
        margin-left: 120px;
    }

    .pro-img {
        width: 380px;
        height: 460px;
    }

    .problem-card {
        width: 420px;
        height: auto;
        padding: 32px;
    }

    .problem1 {
        margin-bottom: 80px;
        margin-left: 80px;
    }

    .problem2 {
        margin-left: 80px;
        margin-top: 40px;
    }

    .problem-card h2 {
        font-size: 22px;
        margin-top: 60px;
    }

    .problem-card p {
        font-size: 16px;
    }

    .problem-section1 {
        max-width: 1000px;
        margin: 100px auto;
        grid-template-columns: 420px 480px;
        row-gap: 180px;
    }

    .problem-image-box1 {
        width: 480px;
        height: 580px;
        margin-left: -150px;
    }

    .problem3 {
        margin-left: -120px;
    }

    .problem4 {
        margin-left: -120px;
    }
}

/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {

    .problem-solution {
        max-width: 1200px;
        margin: 120px auto 0 auto;
        padding: 0 40px;
    }

    .pro-sol {
        max-width: 1000px;
        margin: 0 auto 60px 0;
    }

    .pro-sol h1 {
        font-size: 32px;
    }

    .pro-sol p {
        font-size: 16px;
        max-width: 500px;
    }

    .problem-section {
        max-width: 1000px;
        grid-template-columns: 480px 420px;
        row-gap: 50px;
    }

    .problem-image-box {
        width: 480px;
        height: 580px;
        margin-left: 0;
    }

    .pro-img {
        width: 380px;
        height: 460px;
    }

    .problem-card {
        width: 420px;
        height: auto;
        padding: 32px;
    }

    .problem1 {
        margin-bottom: 80px;
        margin-left: -50px;
    }

    .problem2 {
        margin-left: -50px;
        margin-top: 40px;
    }

    .problem-card h2 {
        font-size: 22px;
        margin-top: 60px;
    }

    .problem-card p {
        font-size: 16px;
    }

    .problem-section1 {
        max-width: 1000px;
        margin: 100px auto;
        grid-template-columns: 420px 480px;
        row-gap: 180px;
    }

    .problem-image-box1 {
        width: 480px;
        height: 580px;
        margin-left: -70px;
    }

    .problem3 {
        margin-left: -10px;
    }

    .problem4 {
        margin-left: -10px;
    }
}


/* ===============================
   1024px RESPONSIVE
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {

    .problem-solution {
        max-width: 1200px;
        margin: 120px auto 0 auto;
        padding: 0 24px;
    }

    .pro-sol {
        max-width: 1000px;
        margin: 0 auto 60px 0;
    }

    .pro-sol h1 {
        font-size: 32px;
    }

    .pro-sol p {
        font-size: 16px;
        max-width: 500px;
    }

    .problem-section {
        max-width: 1000px;
        grid-template-columns: 480px 420px;
        row-gap: 50px;
    }

    .problem-image-box {
        width: 480px;
        height: 580px;
        margin-left: 0;
    }

    .pro-img {
        width: 380px;
        height: 460px;
    }

    .problem-card {
        width: 420px;
        height: auto;
        padding: 32px;
    }

    .problem1 {
        margin-bottom: 80px;
        margin-left: -50px;
    }

    .problem2 {
        margin-left: -50px;
        margin-top: 40px;
    }

    .problem-card h2 {
        font-size: 22px;
        margin-top: 60px;
    }

    .problem-card p {
        font-size: 16px;
    }

    .problem-section1 {
        max-width: 1000px;
        margin: 100px auto;
        grid-template-columns: 420px 480px;
        row-gap: 180px;
    }

    .problem-image-box1 {
        width: 480px;
        height: 580px;
        margin-left: -70px;
    }

    .problem3 {
        margin-left: -10px;
    }

    .problem4 {
        margin-left: -10px;
    }
}

/* ===============================
   WORK SECTION - LARGE SCREEN (max-width: 768px)
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {

    .problem-solution {
        margin: 80px auto 0 auto;
        padding: 0 24px;
    }

    .pro-sol {
        max-width: 100%;
        margin: 0 0 40px 0;
    }

    .pro-sol h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .pro-sol p {
        font-size: 16px;
        max-width: 100%;
    }

    .problem-section {
        max-width: 100%;
        margin-left: 0;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 40px;
        justify-content: center;
    }

    .problem-image-box {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        height: auto;
        margin-left: 0;
        padding: 40px 0 0 0;
    }

    .pro-img {
        width: 70%;
        height: auto;
    }

    .problem-card {
        width: 100%;
        height: auto;
        padding: 28px;
    }

    .problem1,
    .problem2 {
        grid-column: auto;
        grid-row: auto;
        margin: 0;
    }

    .problem-card h2 {
        font-size: 22px;
        margin-top: 30px;
    }

    .problem-card p {
        font-size: 16px;
    }

    .problem-section1 {
        max-width: 100%;
        margin: 80px auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 40px;
        justify-content: center;
    }

    .problem-image-box1 {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        height: auto;
        margin-left: 0;
        padding: 40px 0 0 0;
    }

    .problem3,
    .problem4 {
        grid-column: auto;
        grid-row: auto;
        margin-left: 0;
        align-self: auto;
    }
}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {

    .problem-solution {
        margin: 60px auto 0 auto;
        padding: 0 16px;
    }

    .pro-sol {
        margin: 0 auto 40px 0;
    }

    .pro-sol h1 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .pro-sol p {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
    }

    .problem-section {
        max-width: 100%;
        margin-left: 0;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 24px;
        justify-content: center;
    }

    .problem-image-box {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        height: auto;
        margin-left: 0;
        padding: 20px 0;
    }

    .pro-img {
        width: 80%;
        height: auto;
    }

    .problem-card {
        width: 100%;
        height: auto;
        padding: 24px;
    }

    .problem1,
    .problem2 {
        grid-column: auto;
        grid-row: auto;
        margin: 0;
    }

    .problem-card h2 {
        font-size: 20px;
        margin-top: 20px;
    }

    .problem-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .problem-section1 {
        max-width: 100%;
        margin: 60px auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 24px;
        justify-content: center;
    }

    .problem-image-box1 {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        height: auto;
        margin-left: 0;
        padding: 20px 0;
    }

    .problem3,
    .problem4 {
        grid-column: auto;
        grid-row: auto;
        margin-left: 0;
    }

    .icon-pro {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }
}


/* ===============================
   WORK SECTION - LARGE SCREEN (max-width: 425px)
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {

    .problem-solution {
        margin: 60px auto 0 auto;
        padding: 0 16px;
    }

    .pro-sol {
        margin: 0 auto 40px 0;
    }

    .pro-sol h1 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .pro-sol p {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
    }

    .problem-section {
        max-width: 100%;
        margin-left: 0;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 24px;
        justify-content: center;
    }

    .problem-image-box {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        height: auto;
        margin-left: 0;
        padding: 20px 0;
    }

    .pro-img {
        width: 80%;
        height: auto;
    }

    .problem-card {
        width: 100%;
        height: auto;
        padding: 24px;
    }

    .problem1,
    .problem2 {
        grid-column: auto;
        grid-row: auto;
        margin: 0;
    }

    .problem-card h2 {
        font-size: 20px;
        margin-top: 20px;
    }

    .problem-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .problem-section1 {
        max-width: 100%;
        margin: 60px auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 24px;
        justify-content: center;
    }

    .problem-image-box1 {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        height: auto;
        margin-left: 0;
        padding: 20px 0;
    }

    .problem3,
    .problem4 {
        grid-column: auto;
        grid-row: auto;
        margin-left: 0;
    }

    .icon-pro {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }
}
/* ===============================
   WORK SECTION - LARGE SCREEN (max-width: 375px)
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {

    .problem-solution {
        margin: 60px auto 0 auto;
        padding: 0 16px;
    }

    .pro-sol {
        margin: 0 0 40px 0;
    }

    .pro-sol h1 {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .pro-sol p {
        font-size: 14px;
        max-width: 100%;
    }

    .problem-section {
        max-width: 100%;
        margin-left: 0;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 24px;
        justify-content: center;
    }

    .problem-image-box {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        height: 360px;
        margin-left: 0;
        border-radius: 12px;
    }

    .pro-img {
        width: 80%;
        height: auto;
    }

    .problem-card {
        width: 100%;
        height: auto;
        padding: 24px;
        border-radius: 12px;
    }

    .problem1,
    .problem2 {
        grid-column: auto;
        grid-row: auto;
        margin: 0;
    }

    .problem-card h2 {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .problem-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .icon-pro {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }

    .problem-section1 {
        max-width: 100%;
        margin: 60px auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 24px;
        justify-content: center;
    }

    .problem-image-box1 {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        height: 360px;
        margin-left: 0;
        border-radius: 12px;
    }

    .problem3,
    .problem4 {
        grid-column: auto;
        grid-row: auto;
        margin-left: 0;
        align-self: auto;
    }
}

/* ===============================
   WORK SECTION - LARGE SCREEN (max-width: 320px)
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {

    .problem-solution {
        margin: 60px auto 0 auto;
        padding: 0 16px;
    }

    .pro-sol {
        margin: 0 auto 40px 0;
    }

    .pro-sol h1 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .pro-sol p {
        font-size: 14px;
        max-width: 100%;
    }

    .problem-section {
        max-width: 100%;
        margin-left: 0;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 24px;
        justify-content: center;
    }

    .problem-image-box {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        height: auto;
        margin-left: 0;
        padding: 20px 0 0 0;
    }

    .pro-img {
        width: 80%;
        height: auto;
    }

    .problem-card {
        width: 100%;
        height: auto;
        padding: 24px;
    }

    .problem1,
    .problem2 {
        grid-column: auto;
        grid-row: auto;
        margin: 0;
    }

    .problem-card h2 {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .problem-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .icon-pro {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }

    .problem-section1 {
        max-width: 100%;
        margin: 60px auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 24px;
    }

    .problem-image-box1 {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        height: auto;
        margin-left: 0;
        padding: 20px 0 0 0;
    }

    .problem3,
    .problem4 {
        grid-column: auto;
        grid-row: auto;
        margin-left: 0;
        align-self: unset;
    }
}

    










/* ========================================
   Asthi-care SECTION
   ======================================== */
.better-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.better-care img {
    width: 1920px;
    height: 930px;
}

/* ===============================
   1440px RESPONSIVE
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {

    .better-care img {
        width: 100%;
        height: auto;
        margin-bottom: 50px;
    }
}

/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {

    .better-care img {
        width: 100%;
        height: auto;
        margin-bottom: 40px;
        object-fit: cover;
    }
}

/* ===============================
   1024px RESPONSIVE
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {

    .better-care img {
        width: 100%;
        height: auto;
        margin-bottom: 40px;
        object-fit: cover;
    }
}

/* ===============================
   768px RESPONSIVE
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {

    .better-care img {
        width: 100%;
        height: auto;
        margin-bottom: 40px;
        object-fit: cover;
    }
}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {

    .better-care img {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
        object-fit: cover;
    }
}

/* ===============================
   425px RESPONSIVE
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {

    .better-care img {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
        object-fit: cover;
    }
}

/* ===============================
   375px RESPONSIVE
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {

    .better-care img {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
        display: block;
    }
}

/* ===============================
   320px RESPONSIVE
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {

    .better-care img {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
        object-fit: cover;
    }

}












/* ========================================
   scope Of work SECTION
   ======================================== */
.scope {
    width: 1520px;
    height: 767px;
    margin: auto;
    margin-top: 80px;
}

.scope h1 {
    width: 1520px;
    height: 50px;
    margin-bottom: 30px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #404040;
}

.scope-line1 {
    width: 1520px;
    height: 312px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 30px;
}

.scope-box1 {
    width: 493px;
    height: 312px;
    border-radius: 16px;
    padding: 40px;
    background-color: #F8F8F8;
}

.scope-box1:hover {
    transform: scale(1.02);
    transition: 0.3s;
}

.box-number {
    display: flex;
    justify-content: space-between;
}

.box-number h2 {
    width: 54px;
    height: 54px;
    border-radius: 100px;
    padding: 14px 23px;
    background-color: #FFFFFF;
    font-family: JUST Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #121B80;
}

.box-number button {
    width: 110px;
    height: 55px;
    border-radius: 100px;
    padding: 16px 18px;
    background-color: #121B80;
    font-family: JUST Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FAFAFA;
}

.scope-box1 p{
    width: 413px;
    height: 116px;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 1.6;
    color: #404040;
    padding-top: 35px;
}

.scope-img img {
    width: 493px;
    height: 312px;
    border-radius: 16px;
    background-color: #F8F8F8;
}

.scope-img1 img:hover {
    transform: scale(1.02);
    transition: 0.3s;
}

.scope-line2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

/* ===============================
   1440px RESPONSIVE
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {

    .scope {
        width: 100%;
        height: auto;
        padding: 0 40px;
        margin-top: 80px;
    }

    .scope h1 {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }

    .scope-line1 {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
        margin-bottom: 30px;
    }

    .scope-box1 {
        width: 100%;
        height: auto;
        padding: 30px;
    }

    .scope-box1 p {
        width: 100%;
        height: auto;
        font-size: 16px;
        padding-top: 24px;
    }

    .scope-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .scope-line2 {
        width: 100%;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
    }

    .box-number h2 {
        width: 48px;
        height: 48px;
        padding: 12px 18px;
        font-size: 18px;
    }

    .box-number button {
        width: 100px;
        height: 48px;
        padding: 14px 16px;
        font-size: 16px;
    }
}

/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {

    .scope {
        width: 100%;
        height: auto;
        padding: 0 24px;
        margin-top: 60px;
    }

    .scope h1 {
        width: 100%;
        height: auto;
        margin-bottom: 24px;
        font-size: 28px;
    }

    .scope-line1 {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-bottom: 24px;
    }

    .scope-line2 {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .scope-box1 {
        width: 100%;
        height: auto;
        padding: 30px;
    }

    .scope-box1 p {
        width: 100%;
        height: auto;
        font-size: 16px;
        padding-top: 24px;
    }

    .scope-img img {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

    .box-number h2 {
        width: 48px;
        height: 48px;
        padding: 12px 18px;
        font-size: 18px;
    }

    .box-number button {
        width: auto;
        height: 48px;
        padding: 12px 18px;
        font-size: 16px;
    }
}

/* ===============================
   1024px RESPONSIVE
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {

    .scope {
        width: 100%;
        height: auto;
        padding: 0 24px;
        margin-top: 60px;
    }

    .scope h1 {
        width: 100%;
        height: auto;
        margin-bottom: 24px;
        font-size: 28px;
    }

    .scope-line1 {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-bottom: 24px;
    }

    .scope-line2 {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .scope-box1 {
        width: 100%;
        height: auto;
        padding: 30px;
    }

    .scope-box1 p {
        width: 100%;
        height: auto;
        font-size: 16px;
        padding-top: 24px;
    }

    .scope-img img {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

    .box-number h2 {
        width: 48px;
        height: 48px;
        padding: 12px 18px;
        font-size: 18px;
    }

    .box-number button {
        width: auto;
        height: 48px;
        padding: 12px 18px;
        font-size: 16px;
    }
}

/* ===============================
   768px RESPONSIVE
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {

    .scope {
        width: 100%;
        height: auto;
        margin-top: 60px;
        padding: 0 24px;
    }

    .scope h1 {
        width: 100%;
        height: auto;
        margin-bottom: 24px;
        font-size: 28px;
        line-height: 1.3;
    }

    .scope-line1 {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .scope-line2 {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .scope-box1 {
        width: 100%;
        height: auto;
        padding: 24px;
    }

    .box-number h2 {
        width: 48px;
        height: 48px;
        padding: 12px 18px;
        font-size: 18px;
    }

    .box-number button {
        width: auto;
        height: auto;
        padding: 12px 16px;
        font-size: 16px;
    }

    .scope-box1 p {
        width: 100%;
        height: auto;
        font-size: 16px;
        line-height: 1.6;
        padding-top: 24px;
    }

    .scope-img img {
        width: 100%;
        height: auto;
    }

}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {

    .scope {
        width: 100%;
        height: auto;
        margin-top: 40px;
        padding: 0 16px;
    }

    .scope h1 {
        width: 100%;
        height: auto;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .scope-line1 {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .scope-line2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .scope-box1 {
        width: 100%;
        height: auto;
        padding: 24px;
        border-radius: 12px;
    }

    .box-number h2 {
        width: 44px;
        height: 44px;
        padding: 10px 16px;
        font-size: 16px;
    }

    .box-number button {
        width: auto;
        height: auto;
        padding: 12px 16px;
        font-size: 14px;
    }

    .scope-box1 p {
        width: 100%;
        height: auto;
        font-size: 14px;
        padding-top: 20px;
        line-height: 1.6;
    }

    .scope-img img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

}

/* ===============================
   425px RESPONSIVE
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {

    .scope {
        width: 100%;
        height: auto;
        margin-top: 40px;
        padding: 0 16px;
    }

    .scope h1 {
        width: 100%;
        height: auto;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .scope-line1 {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .scope-line2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .scope-box1 {
        width: 100%;
        height: auto;
        padding: 24px;
        border-radius: 12px;
    }

    .box-number h2 {
        width: 44px;
        height: 44px;
        padding: 10px 16px;
        font-size: 16px;
    }

    .box-number button {
        width: auto;
        height: auto;
        padding: 12px 16px;
        font-size: 14px;
    }

    .scope-box1 p {
        width: 100%;
        height: auto;
        font-size: 14px;
        padding-top: 20px;
        line-height: 1.6;
    }

    .scope-img img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

}

/* ===============================
   375px RESPONSIVE
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {

    .scope {
        width: 100%;
        height: auto;
        margin-top: 40px;
        padding: 0 16px;
    }

    .scope h1 {
        width: 100%;
        height: auto;
        font-size: 22px;
        margin-bottom: 20px;
    }

    .scope-line1 {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .scope-box1 {
        width: 100%;
        height: auto;
        padding: 24px;
        border-radius: 12px;
    }

    .box-number h2 {
        width: 44px;
        height: 44px;
        padding: 10px 16px;
        font-size: 16px;
    }

    .box-number button {
        width: auto;
        height: auto;
        padding: 10px 14px;
        font-size: 14px;
    }

    .scope-box1 p {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.6;
        padding-top: 20px;
    }

    .scope-img img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .scope-line2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===============================
   320px RESPONSIVE
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {

    .scope {
        width: 100%;
        height: auto;
        margin: 40px auto 0 auto;
        padding: 0 16px;
    }

    .scope h1 {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        font-size: 22px;
        line-height: 1.3;
    }

    .scope-line1 {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .scope-line2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .scope-box1 {
        width: 100%;
        height: auto;
        padding: 20px;
        border-radius: 12px;
    }

    .box-number h2 {
        width: 44px;
        height: 44px;
        padding: 10px 16px;
        font-size: 16px;
    }

    .box-number button {
        width: auto;
        height: auto;
        padding: 10px 16px;
        font-size: 14px;
    }

    .scope-box1 p {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.6;
        padding-top: 20px;
    }

    .scope-img img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        object-fit: cover;
    }

}












/* ========================================
   asthi car img line SECTION
   ======================================== */
.annotation-section {
    width: 1520px;
    height: 898px;
    padding: 120px 0;
    margin: auto;
}

.annotation-wrapper {
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.main-image img {
    width: 1520px;
    height: 608px;
    border-radius: 16px;
    display: block;
    margin-left: -160px
}

.note {
    position: absolute;
    max-width: 320px;
    background: #000000A3;
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.note:hover {
    transform: scale(1.02);
    transition: 0.3s;
}

.note span {
    color: #FFC107;
    font-weight: 500;
}

.note-1 {
    top: -70px;
    left: 60px;
}

.note-2 {
    top: -70px;
    right: 230px;
}

.note-3 {
    bottom: -75px;
    left: -40px;
}

.note-4 {
    bottom: -75px;
    left: 40%;
}

.note-5 {
    bottom: -75px;
    right: -11%;
}

/* SVG Lines Layer */
.connector-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; 
}

/* ===============================
   1440px RESPONSIVE
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {

    .annotation-section {
        width: 100%;
        height: auto;
        padding: 100px 40px;
    }

    .annotation-wrapper {
        max-width: 1100px;
    }

    .main-image img {
        width: 100%;
        height: auto;
        border-radius: 16px;
        margin-left: 0%;
    }

    .note {
        max-width: 260px;
        font-size: 13px;
        padding: 14px 18px;
    }

    .note-1 {
        top: -50px;
        left: 120px;
    }

    .note-2 {
        top: -50px;
        right: 25%;
    }

    .note-3 {
        bottom: -60px;
        left: 40px;
    }

    .note-4 {
        bottom: -60px;
        left: 40%;
    }

    .note-5 {
        bottom: -60px;
        right: 1%;
    }

    .connector-lines {
        width: 100%;
        height: 100%;
    }
}

/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {

    .annotation-section {
        width: 100%;
        height: auto;
        padding: 80px 20px;
    }

    .annotation-wrapper {
        max-width: 100%;
    }

    .main-image img {
        width: 100%;
        height: auto;
        border-radius: 16px;
        margin-left: 1px;
    }

    .note {
        max-width: 240px;
        font-size: 13px;
        padding: 12px 16px;
    }

    .note-1 {
        top: -40px;
        left: 40px;
    }

    .note-2 {
        top: -40px;
        right: 233px;
    }

    .note-3 {
        bottom: -50px;
        left: 40px;
    }

    .note-4 {
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
    }

    .note-5 {
        bottom: -50px;
        right: 20px;
    }

    .connector-lines {
        width: 100%;
        height: 100%;
    }

}

/* ===============================
   1024px RESPONSIVE
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {

    .annotation-section {
        width: 100%;
        height: auto;
        padding: 80px 20px;
    }

    .annotation-wrapper {
        max-width: 100%;
    }

    .main-image img {
        width: 100%;
        height: auto;
        border-radius: 16px;
        margin-left: 1px;
    }

    .note {
        max-width: 240px;
        font-size: 13px;
        padding: 12px 16px;
    }

    .note-1 {
        top: -40px;
        left: 40px;
    }

    .note-2 {
        top: -40px;
        right: 233px;
    }

    .note-3 {
        bottom: -50px;
        left: 40px;
    }

    .note-4 {
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
    }

    .note-5 {
        bottom: -50px;
        right: 20px;
    }

    .connector-lines {
        width: 100%;
        height: 100%;
    }

}

/* ===============================
   768px RESPONSIVE
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {

    .annotation-section {
        width: 100%;
        height: auto;
        padding: 80px 20px;
    }

    .annotation-wrapper {
        max-width: 100%;
    }

    .main-image img {
        width: 102%;
        height: auto;
        border-radius: 12px;
        margin-left: -6px;
    }

    .note {
        max-width: 240px;
        font-size: 13px;
        padding: 12px 16px;
        border-radius: 10px;
    }

    .note-1 {
        top: -40px;
        left: 20px;
    }

    .note-2 {
        top: -40px;
        right: 20px;
    }

    .note-3 {
        bottom: -50px;
        left: -3px;
    }

    .note-4 {
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
    }

    .note-5 {
        bottom: -50px;
        right: -7px;
    }

    .connector-lines {
        width: 100%;
        height: 100%;
    }

}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {

    .annotation-section {
        width: 100%;
        height: auto;
        padding: 60px 16px;
    }

    .annotation-wrapper {
        max-width: 100%;
    }

    .main-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .note {
        position: static;
        max-width: 100%;
        margin: 12px 0;
        font-size: 13px;
        line-height: 1.5;
        padding: 12px 16px;
    }

   .note-1 {
        width: 90%;
        top: -40px;
        left: 10px;
        margin-left: 12px;
    }

    .note-2 {
        width: 90%;
        top: -40px;
        right: 10px;
        margin-left: 12px;
    }

    .note-3 {
        width: 90%;
        bottom: -50px;
        left: 10px;
        margin-left: 12px;
    }

    .note-4 {
        width: 90%;
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 189px;
    }

    .note-5 {
        width: 90%;
        bottom: -50px;
        right: 10px;
        margin-left: 12px;
    }

    .connector-lines {
        display: none;
    }

}


/* ===============================
   425px RESPONSIVE
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {

    .annotation-section {
        width: 100%;
        height: auto;
        padding: 60px 16px;
    }

    .annotation-wrapper {
        max-width: 100%;
    }

    .main-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .note {
        position: static;
        max-width: 100%;
        margin: 12px 0;
        font-size: 13px;
        line-height: 1.5;
        padding: 12px 16px;
    }

   .note-1 {
        width: 90%;
        top: -40px;
        left: 10px;
        margin-left: 12px;
    }

    .note-2 {
        width: 90%;
        top: -40px;
        right: 10px;
        margin-left: 12px;
    }

    .note-3 {
        width: 90%;
        bottom: -50px;
        left: 10px;
        margin-left: 12px;
    }

    .note-4 {
        width: 90%;
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 189px;
    }

    .note-5 {
        width: 90%;
        bottom: -50px;
        right: 10px;
        margin-left: 12px;
    }

    .connector-lines {
        display: none;
    }

}

/* ===============================
   375px RESPONSIVE
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {

    .annotation-section {
        width: 100%;
        height: auto;
        padding: 60px 16px;
    }

    .annotation-wrapper {
        max-width: 100%;
        position: relative;
    }

    .main-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        margin-left: 0%;
    }

    .note {
        max-width: 90%;
        font-size: 12px;
        line-height: 1.5;
        padding: 12px 16px;
        border-radius: 10px;
    }

    .note-1 {
        top: -40px;
        left: 10px;
        margin-left: 15px;
    }

    .note-2 {
        top: -40px;
        right: 10px;
        margin-left: 15px;
    }

    .note-3 {
        bottom: -50px;
        left: 10px;
        margin-left: 15px;
    }

    .note-4 {
        width: 98%;
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 185px;
    }

    .note-5 {
        bottom: -50px;
        right: 10px;
        margin-left: 15px;
    }

    .connector-lines {
        width: 100%;
        height: 100%;
    }

}

/* ===============================
   320px RESPONSIVE
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {

    .annotation-section {
        width: 100%;
        height: auto;
        padding: 60px 16px;
    }

    .annotation-wrapper {
        max-width: 100%;
        position: relative;
    }

    .main-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .note {
        position: static;
        max-width: 100%;
        font-size: 12px;
        line-height: 1.5;
        padding: 12px 14px;
        margin-top: 12px;
        border-radius: 10px;
    }

    .note-1 {
        top: -40px;
        left: 10px;
        margin-left: 5px;
    }

    .note-2 {
        top: -40px;
        right: 10px;
        margin-left: 5px;
    }

    .note-3 {
        bottom: -50px;
        left: 10px;
        margin-left: 5px;
    }

    .note-4 {
        width: 90%;
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 135px;
    }

    .note-5 {
        bottom: -50px;
        right: 10px;
        margin-left: 5px;
    }

    .connector-lines {
        display: none;
    }

}











/* ========================================
   KEY SECTION
   ======================================== */
.key-feature {
    width: 1920px;
    height: 826px;
    background-color: #0D0D0D;
    padding: 100px 200px;
} 

.key1 {
    display: flex;
    justify-content: space-between;
}

.key1 h1{
    width: 242px;
    height: 47px;
    font-family: Inter Display;
    font-weight: 700;
    font-style: Bold;
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 0%;
    text-transform: uppercase;
    text-transform: uppercase;
    color: #FFF;
}

.key1 p{
    width: 564px;
    height: 87px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #BFBFBF;
}

.key-icon {
    width: 1520px;
    height: 439px;
    gap: 57px;
}

.icon1 {
    padding-top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 80px;
}

.icon-text:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

.icon-box{
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 18px;
    border: 1px solid #595959;
}

.icon-box img{
    width: 24px;
    height: 24px;
}


.icon-text h1 {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: #E6E6E6;
    padding-top: 20px;
}

.icon-text p{
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: #999999;
    padding-top: 20px;
}


.icon2 {
    padding-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 80px;
}

/* ===============================
   1440px RESPONSIVE
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {

    .key-feature {
        width: 100%;
        height: auto;
        padding: 80px 60px;
    }

    .key1 {
        flex-wrap: wrap;
        gap: 20px;
    }

    .key1 h1 {
        width: auto;
        height: auto;
        font-size: 32px;
    }

    .key1 p {
        width: 100%;
        height: auto;
        font-size: 16px;
        max-width: 600px;
    }

    .key-icon {
        width: 100%;
        height: auto;
        gap: 40px;
    }

    .icon1 {
        padding-top: 60px;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

    .icon2 {
        padding-top: 60px;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

    .icon-text h1 {
        font-size: 18px;
        padding-top: 16px;
    }

    .icon-text p {
        font-size: 16px;
        padding-top: 16px;
    }
}

/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {

    .key-feature {
        width: 100%;
        height: auto;
        padding: 60px 40px;
    }

    .key1 {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin: auto;
    }

    .key1 h1 {
        width: 100%;
        height: auto;
        font-size: 28px;
        line-height: 1.2;
    }

    .key1 p {
        width: 100%;
        height: auto;
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
        margin: auto;
    }

    .key-icon {
        width: 100%;
        height: auto;
        gap: 40px;
    }

    .icon1,
    .icon2 {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        padding-top: 40px;
    }

    .icon-box {
        width: 48px;
        height: 48px;
    }

    .icon-box img {
        width: 20px;
        height: 20px;
    }

    .icon-text h1 {
        font-size: 18px;
        padding-top: 12px;
    }

    .icon-text p {
        font-size: 16px;
        padding-top: 12px;
    }
}

/* ===============================
   1024px RESPONSIVE
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {

    .key-feature {
        width: 100%;
        height: auto;
        padding: 60px 40px;
    }

    .key1 {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin: auto;
    }

    .key1 h1 {
        width: 100%;
        height: auto;
        font-size: 28px;
        line-height: 1.2;
    }

    .key1 p {
        width: 100%;
        height: auto;
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
        margin: auto;
    }

    .key-icon {
        width: 100%;
        height: auto;
        gap: 40px;
    }

    .icon1,
    .icon2 {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        padding-top: 40px;
    }

    .icon-box {
        width: 48px;
        height: 48px;
    }

    .icon-box img {
        width: 20px;
        height: 20px;
    }

    .icon-text h1 {
        font-size: 18px;
        padding-top: 12px;
    }

    .icon-text p {
        font-size: 16px;
        padding-top: 12px;
    }
}

/* ===============================
   768px RESPONSIVE
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {

    .key-feature {
        width: 100%;
        height: auto;
        padding: 60px 16px;
    }

    .key1 {
        flex-direction: column;
        gap: 20px;
    }

    .key1 h1 {
        width: 100%;
        font-size: 28px;
        line-height: 1.2;
        text-align: center;
    }

    .key1 p {
        width: 100%;
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
        margin: auto;
    }

    .key-icon {
        width: 100%;
        height: auto;
        gap: 40px;
        padding-top: 40px;
    }

    .icon1,
    .icon2 {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding-top: 40px;
    }

    .icon-box {
        width: 48px;
        height: 48px;
    }

    .icon-box img {
        width: 20px;
        height: 20px;
    }

    .icon-text h1 {
        font-size: 18px;
        padding-top: 12px;
    }

    .icon-text p {
        font-size: 14px;
        padding-top: 12px;
    }
}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {

    .key-feature {
        width: 100%;
        height: auto;
        padding: 40px 16px;
    }

    .key1 {
        flex-direction: column;
        gap: 16px;
    }

    .key1 h1 {
        width: 100%;
        height: auto;
        font-size: 24px;
        line-height: 1.2;
    }

    .key1 p {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.5;
    }

    .key-icon {
        width: 100%;
        height: auto;
        gap: 24px;
    }

    .icon1,
    .icon2 {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding-top: 40px;
    }

    .icon-box {
        width: 48px;
        height: 48px;
    }

    .icon-box img {
        width: 20px;
        height: 20px;
    }

    .icon-text h1 {
        font-size: 16px;
        padding-top: 12px;
    }

    .icon-text p {
        font-size: 14px;
        padding-top: 12px;
    }
}

/* ===============================
   425px RESPONSIVE
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {

    .key-feature {
        width: 100%;
        height: auto;
        padding: 40px 16px;
    }

    .key1 {
        flex-direction: column;
        gap: 16px;
    }

    .key1 h1 {
        width: 100%;
        height: auto;
        font-size: 24px;
        line-height: 1.2;
    }

    .key1 p {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.5;
    }

    .key-icon {
        width: 100%;
        height: auto;
        gap: 24px;
    }

    .icon1,
    .icon2 {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding-top: 40px;
    }

    .icon-box {
        width: 48px;
        height: 48px;
    }

    .icon-box img {
        width: 20px;
        height: 20px;
    }

    .icon-text h1 {
        font-size: 16px;
        padding-top: 12px;
    }

    .icon-text p {
        font-size: 14px;
        padding-top: 12px;
    }
}

/* ===============================
   375px RESPONSIVE
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px)  {

    .key-feature {
        width: 100%;
        height: auto;
        padding: 40px 16px;
    }

    .key1 {
        flex-direction: column;
        gap: 16px;
    }

    .key1 h1 {
        width: 100%;
        height: auto;
        font-size: 20px;
        line-height: 1.2;
    }

    .key1 p {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.5;
    }

    .key-icon {
        width: 100%;
        height: auto;
        gap: 24px;
        padding-top: 40px;
    }

    .icon1,
    .icon2 {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding-top: 40px;
    }

    .icon-box {
        width: 48px;
        height: 48px;
    }

    .icon-box img {
        width: 20px;
        height: 20px;
    }

    .icon-text h1 {
        font-size: 16px;
        padding-top: 12px;
    }

    .icon-text p {
        font-size: 14px;
        padding-top: 8px;
    }

}

/* ===============================
   320px RESPONSIVE
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {

    .key-feature {
        width: 100%;
        height: auto;
        padding: 60px 16px;
    }

    .key1 {
        flex-direction: column;
        gap: 16px;
    }

    .key1 h1 {
        width: 100%;
        height: auto;
        font-size: 24px;
        line-height: 1.2;
    }

    .key1 p {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.6;
    }

    .key-icon {
        width: 100%;
        height: auto;
        gap: 24px;
    }

    .icon1 {
        padding-top: 40px;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .icon2 {
        padding-top: 40px;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .icon-box {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .icon-box img {
        width: 20px;
        height: 20px;
    }

    .icon-text h1 {
        font-size: 16px;
        padding-top: 12px;
    }

    .icon-text p {
        font-size: 13px;
        line-height: 1.5;
        padding-top: 12px;
    }

}











/* ========================================
   tea-img SECTION
   ======================================== */
.tea-img img {
    width: 1920px;
    height: 1280px;
    max-width: 100%;
    height: auto;
    display: flex;
    justify-content: center;

}

/* ===============================
   1440px RESPONSIVE
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
    .tea-img img {
        width: 100%;
        height: auto;
    }
}

/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {
        .tea-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* ===============================
   1024px RESPONSIVE
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {

    .tea-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* ===============================
   768px RESPONSIVE
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {

    .tea-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px){

    .tea-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* ===============================
   425px RESPONSIVE
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px){

    .tea-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* ===============================
   375px RESPONSIVE
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {

    .tea-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* ===============================
   320px RESPONSIVE
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {

    .tea-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}










/* ========================================
   Therapist App SECTION
   ======================================== */
    .app-the {
        width: 1520px;
        height: 958px;
        margin: auto;
        margin-top: 140px;
        background: url(../Assets/trainer/asthi10.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 16px;
    }

    .Therapist-App {
        width: 1033px;
        height: 222px;
        position: relative;
        top: 685px;
        left: 244px;
        border-radius: 16px;
        padding: 40px 80px;
        background: #FFFFFF4D;
        backdrop-filter: blur(7px);
        color: #FAFAFA;
    }

    .Therapist-App:hover {
        transform: scale(1.02);
        transition: 0.3s;
    }

    .Therapist-App p{
        width: 873px;
        height: 74px;
        font-family: JUST Sans;
        font-weight: 400;
        font-style: Regular;
        font-size: 22px;
        line-height: 160%;
        letter-spacing: 0%;
        text-align: center;
        text-transform: uppercase;
        text-align: center;
        text-transform: uppercase;
        color: #FAFAFA;
    }

    .Therapist-App span {
        font-family: Inter Display;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
        text-align: center;
        text-transform: uppercase;
        color: #FAFAFA;
        background: none;
        border: none;
    }

    .Therapist-App h1{
        width: 873px;
        height: 58px;
       font-family: JUST Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
        text-align: center;
        color: #E6E6E6;
    }
    
/* ===============================
   1440px RESPONSIVE
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {

    .app-the {
        width: 100%;
        height: 770px;
        margin-top: 100px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
    }

    .Therapist-App {
        width: 80%;
        max-width: 900px;
        top: 65%;
        left: 50%;
        transform: translateX(-50%);
        padding: 20px;
        border-radius: 12px;
    }

    .Therapist-App p {
        width: 100%;
        font-size: 18px;
        line-height: 1.5;
    }

    .Therapist-App span {
        font-size: 24px;
    }

    .Therapist-App h1 {
        width: 100%;
        font-size: 16px;
        line-height: 1.5;
    }

}

/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {

    .app-the {
        width: 100%;
        height: 635px;
        margin-top: 80px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
    }

    .Therapist-App {
        width: 90%;
        height: auto;
        top: 75%;
        left: 50%;
        transform: translateX(-50%);
        padding: 20px 30px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .Therapist-App p {
        width: 100%;
        height: auto;
        font-size: 18px;
        line-height: 1.5;
        text-align: center;
    }

    .Therapist-App span {
        font-size: 24px;
        line-height: 1.2;
        text-align: center;
    }

    .Therapist-App h1 {
        width: 100%;
        height: auto;
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
    }

}

/* ===============================
   1024px RESPONSIVE
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {

    .app-the {
        width: 100%;
        height: 635px;
        margin-top: 80px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
    }

    .Therapist-App {
        width: 90%;
        height: auto;
        top: 75%;
        left: 50%;
        transform: translateX(-50%);
        padding: 20px 30px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .Therapist-App p {
        width: 100%;
        height: auto;
        font-size: 18px;
        line-height: 1.5;
        text-align: center;
    }

    .Therapist-App span {
        font-size: 24px;
        line-height: 1.2;
        text-align: center;
    }

    .Therapist-App h1 {
        width: 100%;
        height: auto;
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
    }

}

/* ===============================
   768px RESPONSIVE
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {

    .app-the {
        width: 650px;
        height: 350px;
        margin-top: 60px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
    }

    .Therapist-App {
        width: 90%;
        height: auto;
        top: 50%;
        left: 50%;
        transform: translateX(-50%);
        padding: 24px 32px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .Therapist-App p {
        width: 100%;
        height: auto;
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
    }

    .Therapist-App span {
        font-size: 20px;
        line-height: 1.2;
        text-align: center;
    }

    .Therapist-App h1 {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }

}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {

    .app-the {
        width: 100%;
        height: 433px;
        margin-top: 60px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
        margin: 0;
    }

    .Therapist-App {
        width: 90%;
        height: auto;
        top: 60%;
        left: 0;
        position: relative;
        margin: 20px auto 0 auto;
        padding: 24px 16px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
        text-align: center;
    }

    .Therapist-App p {
        width: 100%;
        height: auto;
        font-size: 16px;
        line-height: 1.5;
    }

    .Therapist-App span {
        font-size: 20px;
        line-height: 1.2;
    }

    .Therapist-App h1 {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.4;
    }

}

/* ===============================
   425px RESPONSIVE
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {

    .app-the {
        width: 100%;
        height: 433px;
        margin-top: 60px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
        margin: 0;
    }

    .Therapist-App {
        width: 90%;
        height: auto;
        top: 60%;
        left: 0;
        position: relative;
        padding: 24px 16px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
        text-align: center;
    }

    .Therapist-App p {
        width: 100%;
        height: auto;
        font-size: 16px;
        line-height: 1.5;
    }

    .Therapist-App span {
        font-size: 20px;
        line-height: 1.2;
    }

    .Therapist-App h1 {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.4;
    }

}

/* ===============================
   375px RESPONSIVE
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {

    .app-the {
        width: 100%;
        height: 433px;
        margin-top: 60px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
        margin: 0;
    }

    .Therapist-App {
        width: 90%;
        height: auto;
        top: 50%;
        left: auto;
        margin: 20px auto 0 auto;
        padding: 20px 16px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .Therapist-App p {
        width: 100%;
        height: auto;
        font-size: 16px;
        line-height: 1.4;
        text-align: center;
    }

    .Therapist-App span {
        font-size: 20px;
        line-height: 1.2;
        display: block;
        text-align: center;
        margin-bottom: 8px;
    }

    .Therapist-App h1 {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }

}

/* ===============================
   320px RESPONSIVE
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {

    .app-the {
        width: 100%;
        height: 333px;
        margin-top: 40px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
        margin: 0;
    }

    .Therapist-App {
        width: 90%;
        height: auto;
        top: 42%;
        padding: 20px 16px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .Therapist-App p {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }

    .Therapist-App span {
        font-size: 18px;
        line-height: 1.2;
        text-align: center;
    }

    .Therapist-App h1 {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }

}











/* ========================================
   Therapist App SECTION
   ======================================== */
    .Reception-App {
        width: 1920px;
        height: 3655px;
        margin: auto;
        margin-top: 140px;
        background: url(../Assets/trainer/asthi11.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .app-img {
        width: 1520px;
        height: 2722px;
        padding-top: 140px;
        padding: auto;
        margin: auto;
    }

    .app-text {
        width: 739px;
        height: 269px;
        position: relative;
        top: 7px;
        left: 781px;
        border-radius: 28px;
        padding: 40px 60px;
        background: #F8F8F81A;
        backdrop-filter: blur(7px);
        color: #FAFAFA;
    }

    .app-text p{
        width: 619px;
        height: 74px;
        font-family: JUST Sans;
        font-weight: 400;
        font-style: Regular;
        font-size: 22px;
        line-height: 160%;
        letter-spacing: 0%;
        text-align: center;
        text-transform: uppercase;
        color: #0D0D0D;
    }

    .app-text span {
        font-family: Inter Display;
        font-weight: 600;
        font-style: SemiBold;
        font-size: 30px;
        line-height: 140%;
        letter-spacing: 0%;
        text-align: center;
        text-transform: uppercase;
        color: #0D0D0D;
        background: none;
        border: none;
    }

    .app-text h1{
        width: 619px;
        height: 87px;
        font-family: JUST Sans;
        font-weight: 400;
        font-style: Regular;
        font-size: 18px;
        line-height: 160%;
        letter-spacing: 0%;
        text-align: center;
        text-align: center;
        color: #333333;
    }

    .app-img1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.app1-img,
.app2-img {
    display: flex;
    padding-top: 150px;
}

/* Important wrapper */
.phone-wrapper {
    position: relative;
    width: 510px;
    height: 655px;
}

.phone-wrapper img {
    width: 318px;
    padding-left: 10px;
    height: 655px;
    object-fit: contain;
}

/* Floating text bubble like screenshot */
.text-bubble {
    position: absolute;
    bottom: 55px; 
    left: 270px; 
    width: 270px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #FFFFFFA3;
    backdrop-filter: blur(6px);
    border: 1px solid #FFFFFF;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: #1A1A1A;
}

/* For right side phone text */
.text-right {
    position: absolute;
    bottom: 495px; 
    left: -195px; 
    width: 270px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #FFFFFFA3;
    backdrop-filter: blur(6px);
    border: 1px solid #FFFFFF;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: #1A1A1A;
}



.app-img2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.app4-img,
.app5-img {
    display: flex;
    padding-top: 150px;
}

/* Important wrapper */
.phone-wrapper1 {
    position: relative;
    width: 510px;
    height: 655px;
}

.phone-wrapper1 img {
    width: 318px;
    padding-left: 10px;
    height: 655px;
    object-fit: contain;
    margin-left: 500px;
}

/* Floating text bubble like screenshot */
.text-bubble1 {
    position: absolute;
    bottom: 55px; 
    left: 780px; 
    width: 270px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #FFFFFFA3;
    backdrop-filter: blur(6px);
    border: 1px solid #FFFFFF;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: #1A1A1A;
}

/* For right side phone text */
.text-right1 {
    position: absolute;
    bottom: 495px; 
    left: 305px; 
    width: 270px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #FFFFFFA3;
    backdrop-filter: blur(6px);
    border: 1px solid #FFFFFF;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: #1A1A1A;
}



.app-img3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

.app6-img,
.app7-img,
.app8-img {
    display: flex;
    padding-top: 180px;
}

/* Important wrapper */
.phone-wrapper2 {
    position: relative;
    width: 510px;
    height: 655px;
}

.phone-wrapper2 img {
    width: 318px;
    padding-left: 10px;
    height: 655px;
    object-fit: contain;
}

/* Floating text bubble like screenshot */
.text-bubble2 {
    position: absolute;
    bottom: 510px; 
    left: 270px; 
    width: 270px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #FFFFFFA3;
    backdrop-filter: blur(6px);
    border: 1px solid #FFFFFF;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: #1A1A1A;
}

/* For right side phone text */
.text-right2 {
    position: absolute;
    bottom: 60px; 
    left: 270px; 
    width: 270px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #FFFFFFA3;
    backdrop-filter: blur(6px);
    border: 1px solid #FFFFFF;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: #1A1A1A;
}

.text-left2 {
    position: absolute;
    bottom: 500px; 
    left: -210px; 
    width: 270px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #FFFFFFA3;
    backdrop-filter: blur(6px);
    border: 1px solid #FFFFFF;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: #1A1A1A;
}

/* ===============================
   1440px RESPONSIVE
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {

    .Reception-App {
        width: 100%;
        height: auto;
        margin-top: 80px;
        background-size: cover;
        background-position: center;
    }

    .app-img {
        width: 100%;
        height: auto;
        padding-top: 80px;
    }

    .app-text {
        width: 90%;
        height: auto;
        max-width: 700px;
        top: auto;
        left: auto;
        margin: 20px auto;
        padding: 30px 40px;
        border-radius: 16px;
    }

    .app-text p {
        width: 100%;
        font-size: 18px;
        line-height: 1.4;
        text-align: center;
    }

    .app-text span {
        font-size: 20px;
        line-height: 1.2;
        text-align: center;
    }

    .app-text h1 {
        width: 100%;
        font-size: 16px;
        line-height: 1.4;
        text-align: center;
    }

    .app-img1,
    .app-img2,
    .app-img3 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }

    .app1-img,
    .app2-img,
    .app4-img,
    .app5-img,
    .app6-img,
    .app7-img,
    .app8-img {
        padding-top: 80px;
        justify-content: center;
    }

    .phone-wrapper,
    .phone-wrapper1,
    .phone-wrapper2 {
        width: 70%;
        height: auto;
    }

    .phone-wrapper img,
    .phone-wrapper1 img,
    .phone-wrapper2 img {
        width: 250px;
        height: auto;
        padding-left: 0;
        margin-left: 28%;
        margin-right: auto;
    }

    .text-bubble,
    .text-right,
    .text-bubble1,
    .text-right1,
    .text-bubble2,
    .text-right2,
    .text-left2 {
        position: static;
        width: 90%;
        margin: 12px auto;
        padding: 10px 12px;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }
}

/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {

    .Reception-App {
        width: 100%;
        height: auto;
        margin-top: 80px;
        background-size: cover;
        background-position: center;
    }

    .app-img {
        width: 100%;
        height: auto;
        padding-top: 80px;
    }

    .app-text {
        width: 90%;
        height: auto;
        max-width: 600px;
        top: auto;
        left: auto;
        margin: 20px auto;
        padding: 30px 40px;
        border-radius: 16px;
    }

    .app-text p {
        width: 100%;
        font-size: 16px;
        line-height: 1.4;
        text-align: center;
    }

    .app-text span {
        font-size: 18px;
        line-height: 1.3;
        text-align: center;
    }

    .app-text h1 {
        width: 100%;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }

    .app-img1,
    .app-img2,
    .app-img3 {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .app1-img,
    .app2-img,
    .app4-img,
    .app5-img,
    .app6-img,
    .app7-img,
    .app8-img {
        padding-top: 60px;
        justify-content: center;
    }

    .phone-wrapper,
    .phone-wrapper1,
    .phone-wrapper2 {
        width: 70%;
        height: auto;
    }

    .phone-wrapper img,
    .phone-wrapper1 img,
    .phone-wrapper2 img {
        width: 250px;
        height: auto;
        margin: 0 auto;
        padding-left: 0;
    }

    .text-bubble,
    .text-right,
    .text-bubble1,
    .text-right1,
    .text-bubble2,
    .text-right2,
    .text-left2 {
        position: static;
        width: 90%;
        margin: 12px auto;
        padding: 10px 12px;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }

}

/* ===============================
   1024px RESPONSIVE
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {

    .Reception-App {
        width: 100%;
        height: auto;
        margin-top: 80px;
        background-size: cover;
        background-position: center;
    }

    .app-img {
        width: 100%;
        height: auto;
        padding-top: 80px;
    }

    .app-text {
        width: 90%;
        height: auto;
        max-width: 600px;
        top: auto;
        left: auto;
        margin: 20px auto;
        padding: 30px 40px;
        border-radius: 16px;
    }

    .app-text p {
        width: 100%;
        font-size: 16px;
        line-height: 1.4;
        text-align: center;
    }

    .app-text span {
        font-size: 18px;
        line-height: 1.3;
        text-align: center;
    }

    .app-text h1 {
        width: 100%;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }

    .app-img1,
    .app-img2,
    .app-img3 {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .app1-img,
    .app2-img,
    .app4-img,
    .app5-img,
    .app6-img,
    .app7-img,
    .app8-img {
        padding-top: 60px;
        justify-content: center;
    }

    .phone-wrapper,
    .phone-wrapper1,
    .phone-wrapper2 {
        width: 70%;
        height: auto;
    }

    .phone-wrapper img,
    .phone-wrapper1 img,
    .phone-wrapper2 img {
        width: 250px;
        height: auto;
        margin: 0 auto;
        padding-left: 0;
    }

    .text-bubble,
    .text-right,
    .text-bubble1,
    .text-right1,
    .text-bubble2,
    .text-right2,
    .text-left2 {
        position: static;
        width: 90%;
        margin: 12px auto;
        padding: 10px 12px;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }

}

/* ===============================
   768px RESPONSIVE
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {

    .Reception-App {
        width: 100%;
        height: auto;
        margin-top: 80px;
        background-size: cover;
        background-position: center;
    }

    .app-img {
        width: 100%;
        height: auto;
        padding-top: 60px;
    }

    .app-text {
        width: 90%;
        height: auto;
        max-width: 600px;
        top: auto;
        left: auto;
        margin: 20px auto;
        padding: 24px 32px;
        border-radius: 16px;
    }

    .app-text p,
    .app-text span,
    .app-text h1 {
        width: 100%;
        font-size: 16px;
        line-height: 1.4;
        text-align: center;
    }

    .app-img1,
    .app-img2,
    .app-img3 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .app1-img,
    .app2-img,
    .app4-img,
    .app5-img,
    .app6-img,
    .app7-img,
    .app8-img {
        padding-top: 60px;
        justify-content: center;
    }

    .phone-wrapper,
    .phone-wrapper1,
    .phone-wrapper2 {
        width: 80%;
        height: auto;
        margin: 0 auto;
        position: relative;
    }

    .phone-wrapper img,
    .phone-wrapper1 img,
    .phone-wrapper2 img {
        width: 250px;
        height: auto;
        padding-left: 0;
        margin-right: auto;
    }

    .phone-wrapper1 img {
        margin-left: 0;
    }

    .text-bubble,
    .text-right,
    .text-bubble1,
    .text-right1,
    .text-bubble2,
    .text-right2,
    .text-left2 {
        position: static;
        width: 90%;
        margin: 12px auto;
        padding: 10px 12px;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }
}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {

    .Reception-App {
        width: 100%;
        height: auto;
        margin-top: 60px;
        background-size: cover;
        background-position: center;
    }

    .app-img {
        width: 100%;
        height: auto;
        padding-top: 60px;
    }

    .app-text {
        width: 90%;
        height: auto;
        max-width: 350px;
        top: auto;
        left: auto;
        margin: 20px auto;
        padding: 20px 16px;
        border-radius: 16px;
        backdrop-filter: blur(5px);
    }

    .app-text p {
        width: 100%;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }

    .app-text span {
        font-size: 16px;
        line-height: 1.2;
        text-align: center;
    }

    .app-text h1 {
        width: 100%;
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
    }

    .app-img1,
    .app-img2,
    .app-img3 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .app1-img,
    .app2-img,
    .app4-img,
    .app5-img,
    .app6-img,
    .app7-img,
    .app8-img {
        padding-top: 40px;
        justify-content: center;
    }

    .phone-wrapper,
    .phone-wrapper1,
    .phone-wrapper2 {
        width: 70%;
        height: auto;
        margin: auto;
    }

    .phone-wrapper img,
    .phone-wrapper1 img,
    .phone-wrapper2 img {
        width: 200px;
        height: auto;
        padding-left: 0;
        margin-left: 15%;
        margin-right: auto;
    }

    .text-bubble,
    .text-right,
    .text-bubble1,
    .text-right1,
    .text-bubble2,
    .text-right2,
    .text-left2 {
        position: static;
        width: 90%;
        margin: 12px auto;
        padding: 8px 10px;
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
    }

}

/* ===============================
   425px RESPONSIVE
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {

    .Reception-App {
        width: 100%;
        height: auto;
        margin-top: 60px;
        background-size: cover;
        background-position: center;
    }

    .app-img {
        width: 100%;
        height: auto;
        padding-top: 60px;
    }

    .app-text {
        width: 90%;
        height: auto;
        max-width: 350px;
        top: auto;
        left: auto;
        margin: 20px auto;
        padding: 20px 16px;
        border-radius: 16px;
        backdrop-filter: blur(5px);
    }

    .app-text p {
        width: 100%;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }

    .app-text span {
        font-size: 16px;
        line-height: 1.2;
        text-align: center;
    }

    .app-text h1 {
        width: 100%;
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
    }

    .app-img1,
    .app-img2,
    .app-img3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .app1-img,
    .app2-img,
    .app4-img,
    .app5-img,
    .app6-img,
    .app7-img,
    .app8-img {
        padding-top: 40px;
        justify-content: center;
    }

    .phone-wrapper,
    .phone-wrapper1,
    .phone-wrapper2 {
        width: 70%;
        height: auto;
        margin: auto;
    }

    .phone-wrapper img,
    .phone-wrapper1 img,
    .phone-wrapper2 img {
        width: 200px;
        height: auto;
        padding-left: 0;
        margin-left: 15%;
        margin-right: auto;
    }

    .text-bubble,
    .text-right,
    .text-bubble1,
    .text-right1,
    .text-bubble2,
    .text-right2,
    .text-left2 {
        position: static;
        width: 90%;
        margin: 12px auto;
        padding: 8px 10px;
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
    }

}

/* ===============================
   375px RESPONSIVE
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {

    .Reception-App {
        width: 100%;
        height: auto;
        margin-top: 60px;
        background-size: cover;
        background-position: center;
    }

    .app-img {
        width: 100%;
        height: auto;
        padding-top: 60px;
    }

    .app-text {
        width: 90%;
        max-width: 320px;
        top: auto;
        left: auto;
        margin: 20px auto;
        padding: 20px 16px;
        border-radius: 16px;
        backdrop-filter: blur(5px);
    }

    .app-text p,
    .app-text span,
    .app-text h1 {
        width: 100%;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }

    .app-img1,
    .app-img2,
    .app-img3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .app1-img,
    .app2-img,
    .app4-img,
    .app5-img,
    .app6-img,
    .app7-img,
    .app8-img {
        padding-top: 40px;
        justify-content: center;
    }

    .phone-wrapper,
    .phone-wrapper1,
    .phone-wrapper2 {
        width: 80%;
        height: auto;
        margin: auto;
    }

    .phone-wrapper img,
    .phone-wrapper1 img,
    .phone-wrapper2 img {
        width: 200px;
        height: auto;
        padding-left: 0;
        margin-left: 18%;
        margin-right: auto;
    }

    .text-bubble,
    .text-right,
    .text-bubble1,
    .text-right1,
    .text-bubble2,
    .text-right2,
    .text-left2 {
        position: static;
        width: 90%;
        margin: 12px auto;
        padding: 10px 12px;
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
    }

}

/* ===============================
   320px RESPONSIVE
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {

    .Reception-App {
        width: 100%;
        height: auto;
        margin-top: 40px;
        background-size: cover;
        background-position: center;
    }

    .app-img {
        width: 100%;
        height: auto;
        padding-top: 40px;
    }

    .app-text {
        width: 90%;
        max-width: 300px;
        top: auto;
        left: auto;
        margin: 20px auto;
        padding: 20px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .app-text p {
        width: 100%;
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
    }

    .app-text span {
        font-size: 14px;
        line-height: 1.3;
        text-align: center;
    }

    .app-text h1 {
        width: 100%;
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
    }

    .app-img1,
    .app-img2,
    .app-img3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .app1-img,
    .app2-img,
    .app4-img,
    .app5-img,
    .app6-img,
    .app7-img,
    .app8-img {
        padding-top: 40px;
        justify-content: center;
    }

    .phone-wrapper,
    .phone-wrapper1,
    .phone-wrapper2 {
        width: 70%;
        height: auto;
        margin: 0 auto;
        position: relative;
    }

    .phone-wrapper img,
    .phone-wrapper1 img,
    .phone-wrapper2 img {
        width: 200px;
        height: auto;
        padding-left: 0;
        margin-left: 4%;
        margin-right: auto;
    }

    .text-bubble,
    .text-right,
    .text-bubble1,
    .text-right1,
    .text-bubble2,
    .text-right2,
    .text-left2 {
        position: static;
        width: 90%;
        margin: 10px auto;
        padding: 8px 10px;
        font-size: 12px;
        line-height: 1.3;
        text-align: center;
    }
}







/* ========================================
   Therapist App SECTION
   ======================================== */
    .app-tv {
        width: 1520px;
        height: 958px;
        margin: auto;
        margin-top: 140px;
        background: url(../Assets/trainer/asthi13.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 16px;
    }

    .Tv-App {
        width: 1033px;
        height: 222px;
        position: relative;
        top: 685px;
        left: 244px;
        border-radius: 16px;
        padding: 40px 80px;
        background: #FFFFFF4D;
        backdrop-filter: blur(7px);
        color: #FAFAFA;
    }

    .Tv-App:hover {
        transform: scale(1.02);
        transition: 0.3s;
    }

    .Tv-App p{
        width: 873px;
        height: 74px;
        font-family: JUST Sans;
    font-family: JUST Sans;
        font-weight: 400;
        font-style: Regular;
        font-size: 22px;
        line-height: 160%;
        letter-spacing: 0%;
        text-align: center;
        text-transform: uppercase;
        color: #FAFAFA;
    }

    .Tv-App span {
        font-family: Inter Display;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
        color: #FAFAFA;
        background: none;
        border: none;
    }

    .Tv-App h1{
        width: 727px;
        height: 58px;
        margin: auto;
        font-family: JUST Sans;
        font-family: JUST Sans;
        font-weight: 400;
        font-style: Regular;
        font-size: 18px;
        line-height: 160%;
        letter-spacing: 0%;
        text-align: center;
        justify-content: center;
        color: #E6E6E6;
    }

/* ===============================
   1440px RESPONSIVE
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {

    .app-tv {
        width: 1040px;
        height: 666px;
        margin-top: 80px;
        border-radius: 16px;
        background-size: cover;
        background-position: center;
    }

    .Tv-App {
        width: 80%;
        max-width: 900px;
        height: auto;
        top: 75%;
        left: auto;
        margin: 40px auto 0 auto;
        padding: 30px 40px;
        border-radius: 16px;
        backdrop-filter: blur(6px);
    }

    .Tv-App p {
        width: 100%;
        height: auto;
        font-size: 18px;
        line-height: 1.5;
        text-align: center;
    }

    .Tv-App span {
        font-size: 24px;
        line-height: 1.2;
        text-align: center;
    }

    .Tv-App h1 {
        width: 100%;
        height: auto;
        font-size: 16px;
        line-height: 1.4;
        text-align: center;
        justify-content: center;
    }

}

/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {

    .app-tv {
        width: 870px;
        height: 555px;
        margin-top: 80px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
    }

    .Tv-App {
        width: 90%;
        max-width: 700px;
        height: auto;
        top: 67%;
        left: auto;
        margin: 20px auto;
        padding: 30px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .Tv-App p {
        width: 100%;
        font-size: 18px;
        line-height: 1.4;
        text-align: center;
    }

    .Tv-App span {
        font-size: 24px;
        line-height: 1.2;
        text-align: center;
    }

    .Tv-App h1 {
        width: 100%;
        font-size: 16px;
        line-height: 1.4;
        text-align: center;
    }
}

/* ===============================
   1024px RESPONSIVE
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {

    .app-tv {
        width: 870px;
        height: 555px;
        margin-top: 80px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
    }

    .Tv-App {
        width: 90%;
        max-width: 700px;
        height: auto;
        top: 67%;
        left: auto;
        margin: 20px auto;
        padding: 30px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .Tv-App p {
        width: 100%;
        font-size: 18px;
        line-height: 1.4;
        text-align: center;
    }

    .Tv-App span {
        font-size: 24px;
        line-height: 1.2;
        text-align: center;
    }

    .Tv-App h1 {
        width: 100%;
        font-size: 16px;
        line-height: 1.4;
        text-align: center;
    }
}

/* ===============================
   768px RESPONSIVE
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {

    .app-tv {
        width: 650px;
        height: 400px;
        margin-top: 60px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
    }

    .Tv-App {
        width: 90%;
        max-width: 600px;
        height: auto;
        top: 60%;
        left: auto;
        margin: 20px auto;
        padding: 20px 30px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .Tv-App p {
        width: 100%;
        height: auto;
        font-size: 16px;
        line-height: 1.4;
        text-align: center;
    }

    .Tv-App span {
        font-size: 22px;
        line-height: 1.2;
        text-align: center;
    }

    .Tv-App h1 {
        width: 100%;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        margin: 10px auto 0 auto;
    }

}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {

    .app-tv {
        width: 100%;
        height: 555px;
        margin-top: 60px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
    }

    .Tv-App {
        width: 90%;
        max-width: 350px;
        height: auto;
        top: 70%;
        left: auto;
        margin: 20px auto;
        padding: 20px 16px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .Tv-App p {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }

    .Tv-App span {
        font-size: 18px;
        line-height: 1.2;
        text-align: center;
    }

    .Tv-App h1 {
        width: 100%;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }

}

/* ===============================
   425px RESPONSIVE
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {

    .app-tv {
        width: 100%;
        height: 555px;
        margin-top: 60px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
    }

    .Tv-App {
        width: 90%;
        max-width: 350px;
        height: auto;
        top: 70%;
        left: auto;
        margin: 20px auto;
        padding: 20px 16px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .Tv-App p {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }

    .Tv-App span {
        font-size: 18px;
        line-height: 1.2;
        text-align: center;
    }

    .Tv-App h1 {
        width: 100%;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }

}

/* ===============================
   375px RESPONSIVE
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {

    .app-tv {
        width: 375px;
        height: 325px;
        margin-top: 40px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
    }

    .Tv-App {
        width: 90%;
        height: auto;
        top: 50%;
        left: auto;
        margin: 20px auto;
        padding: 20px 16px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .Tv-App p {
        width: 100%;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }

    .Tv-App span {
        font-size: 18px;
        line-height: 1.2;
        text-align: center;
    }

    .Tv-App h1 {
        width: 100%;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        margin: 10px auto 0 auto;
    }

}

/* ===============================
   320px RESPONSIVE
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {

    .app-tv {
        width: 320px;
        height: 230px;
        margin-top: 40px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
    }

    .Tv-App {
        width: 90%;
        height: auto;
        top: 32%;
        left: auto;
        margin: 20px auto;
        padding: 20px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .Tv-App p {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        text-transform: uppercase;
    }

    .Tv-App span {
        font-size: 18px;
        line-height: 1.2;
        text-align: center;
    }

    .Tv-App h1 {
        width: 100%;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        margin: 10px auto 0 auto;
    }

}










/* ========================================
   ipad App SECTION
   ======================================== */
    .ipad-App {
        width: 1920px;
        height: 3599px;
        margin: auto;
        margin-top: 140px;
        background: url(../Assets/trainer/asthi14.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .ipad-img {
        width: 1520px;
        height: 2722px;
        padding-top: 140px;
        padding: auto;
        margin: auto;
    }

    .ipad-text {
        width: 739px;
        height: 269px;
        position: relative;
        top: 7px;
        left: 781px;
        border-radius: 28px;
        padding: 40px 60px;
        background: #F8F8F81A;
        backdrop-filter: blur(7px);
    }

    .ipad-text p{
        width: 619px;
        height: 74px;
        font-family: JUST Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 22px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
        color: #0D0D0D;
    }

    .ipad-text span {
        font-family: Inter Display;
        font-weight: 600;
        font-style: SemiBold;
        font-size: 30px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        text-transform: uppercase;
        color: #0D0D0D;
        background: none;
        border: none;
    }

    .ipad-text h1{
        width: 619px;
        height: 87px;
        font-family: JUST Sans;
        font-weight: 400;
        font-style: Regular;
        font-size: 18px;
        line-height: 160%;
        letter-spacing: 0%;
        text-align: center;
        color: #333333;
    }

.ipad-img1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 150px;
}

/* Make parent relative for floating labels */
.ipad-wrapper1,
.ipad-wrapper2 {
    position: relative;
    display: inline-block;
}

/* Screenshot Images */
.ipad-wrapper1 img {
    width: 414px;
    height: 276px;
    object-fit: contain;
    border-radius: 16px;
}

.ipad-wrapper2 img {
    width: 638px;
    height: 446px;
    border-radius: 22px;
    border: 10px solid #000;
    object-fit: contain;
    margin-left: -130px;
}

.label-right {
    position: absolute;
    top: -130px;
    right: 120px;
    width: 307px;
    height: 78px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: #1A1A1A;
    padding: 14px 18px;
    border-radius: 14px;
    text-align: center;
}




.ipad-img2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 210px;
}

/* Make parent relative for floating labels */
.ipad-wrapper3,
.ipad-wrapper4 {
    position: relative;
    display: inline-block;
}

/* Screenshot Images */
.ipad-wrapper3 img {
    width: 638px;
    height: 446px;
    border-radius: 22px;
    border: 10px solid #000;
    object-fit: contain;
    border-radius: 16px;
}

.ipad-wrapper4 img {
    width: 638px;
    height: 446px;
    border-radius: 22px;
    border: 10px solid #000;
    object-fit: contain;
    margin-left: 115px;
}

.label-right1 {
    position: absolute;
    top: -140px;
    right: 300px;
    width: 307px;
    height: 78px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: #1A1A1A;
    padding: 14px 18px;
    border-radius: 14px;
    text-align: center;
}



.ipad-img3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 250px;
}

/* Make parent relative for floating labels */
.ipad-wrapper5,
.ipad-wrapper6 {
    position: relative;
    display: inline-block;
}

/* Screenshot Images */
.ipad-wrapper5 img {
    width: 638px;
    height: 446px;
    margin-left: 410px;
    object-fit: contain;
    border-radius: 22px;
    border: 10px solid #000;
}

.ipad-wrapper6 img {
    width: 405px;
    height: 316px;
    border-radius: 22px;
    margin-left: 70px;
}

.label-right2 {
    position: absolute;
    top: -130px;
    right: 300px;
    width: 307px;
    height: 78px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: #1A1A1A;
    padding: 14px 18px;
    border-radius: 14px;
}

/* ===============================
   1440px RESPONSIVE
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {

    .ipad-App {
        width: 100%;
        height: auto;
        margin-top: 80px;
        background-size: cover;
        background-position: center;
    }

    .ipad-img {
        width: 100%;
        height: auto;
        padding-top: 70px;
    }

    .ipad-text {
        width: 90%;
        height: auto;
        max-width: 650px;
        top: auto;
        left: auto;
        margin: 20px auto;
        padding: 30px 40px;
        border-radius: 16px;
        backdrop-filter: blur(5px);
    }

    .ipad-text p {
        width: 100%;
        font-size: 18px;
        line-height: 1.4;
        text-align: center;
        text-transform: uppercase;
    }

    .ipad-text span {
        font-size: 22px;
        line-height: 1.4;
        text-align: center;
    }

    .ipad-text h1 {
        width: 100%;
        font-size: 16px;
        line-height: 1.4;
        text-align: center;
    }

    .ipad-img1,
    .ipad-img2,
    .ipad-img3 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 80px;
        gap: 40px;
    }

    .ipad-wrapper1 img,
    .ipad-wrapper2 img,
    .ipad-wrapper3 img,
    .ipad-wrapper4 img,
    .ipad-wrapper5 img,
    .ipad-wrapper6 img {
        width: 100%;
        max-width: 500px;
        height: auto;
        object-fit: contain;
        border-radius: 16px;
        margin-left: 115px;
    }

    .label-right,
    .label-right1,
    .label-right2 {
        position: static;
        width: 90%;
        margin: 10px auto;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        padding: 10px 12px;
    }
}

/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {
    .ipad-App {
        width: 100%;
        height: auto;
        margin-top: 80px;
        background-size: cover;
        background-position: center;
    }

    .ipad-img {
        width: 100%;
        height: auto;
        padding-top: 60px;
    }

    .ipad-text {
        width: 90%;
        max-width: 600px;
        top: auto;
        left: auto;
        margin: 20px auto;
        padding: 20px 30px;
        border-radius: 16px;
        backdrop-filter: blur(5px);
    }

    .ipad-text p,
    .ipad-text span,
    .ipad-text h1 {
        width: 100%;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        margin-top: -15px;
    }

    .ipad-img1,
    .ipad-img2,
    .ipad-img3 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 90px;
    }

    .ipad-wrapper1 img,
    .ipad-wrapper2 img,
    .ipad-wrapper3 img,
    .ipad-wrapper4 img,
    .ipad-wrapper5 img,
    .ipad-wrapper6 img {
        width: 90%;
        height: auto;
        max-width: 100%;
        margin-left: 20px;
        border-radius: 16px;
    }

    .ipad-wrapper3 {
        margin-top: -100px;
    }

    .label-right,
    .label-right1,
    .label-right2 {
        position: static;
        width: 90%;
        margin: 12px auto;
        font-size: 14px;
        padding: 10px 12px;
        text-align: center;
    }
}

/* ===============================
   1024px RESPONSIVE
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {

    .ipad-App {
        width: 100%;
        height: auto;
        margin-top: 80px;
        background-size: cover;
        background-position: center;
    }

    .ipad-img {
        width: 100%;
        height: auto;
        padding-top: 60px;
    }

    .ipad-text {
        width: 90%;
        max-width: 600px;
        top: auto;
        left: auto;
        margin: 20px auto;
        padding: 20px 30px;
        border-radius: 16px;
        backdrop-filter: blur(5px);
    }

    .ipad-text p,
    .ipad-text span,
    .ipad-text h1 {
        width: 100%;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        margin-top: -15px;
    }

    .ipad-img1,
    .ipad-img2,
    .ipad-img3 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 90px;
    }

    .ipad-wrapper1 img,
    .ipad-wrapper2 img,
    .ipad-wrapper3 img,
    .ipad-wrapper4 img,
    .ipad-wrapper5 img,
    .ipad-wrapper6 img {
        width: 90%;
        height: auto;
        max-width: 100%;
        margin-left: 20px;
        border-radius: 16px;
    }

    .ipad-wrapper3 {
        margin-top: -100px;
    }

    .label-right,
    .label-right1,
    .label-right2 {
        position: static;
        width: 90%;
        margin: 12px auto;
        font-size: 14px;
        padding: 10px 12px;
        text-align: center;
    }
}


/* ===============================
   768px RESPONSIVE
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {

    .ipad-App {
        width: 100%;
        height: auto;
        margin-top: 60px;
        background-size: cover;
        background-position: center;
    }

    .ipad-img {
        width: 100%;
        height: auto;
        padding-top: 60px;
    }

    .ipad-text {
        width: 90%;
        max-width: 600px;
        top: auto;
        left: auto;
        margin: 20px auto;
        padding: 20px;
        border-radius: 16px;
    }

    .ipad-text p,
    .ipad-text span,
    .ipad-text h1 {
        width: 100%;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        margin-top: -15px;
    }

    .ipad-img1,
    .ipad-img2,
    .ipad-img3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 60px;
    }

    .ipad-wrapper1 img,
    .ipad-wrapper2 img,
    .ipad-wrapper3 img,
    .ipad-wrapper4 img,
    .ipad-wrapper5 img,
    .ipad-wrapper6 img {
        width: 85%;
        height: auto;
        object-fit: contain;
        margin-left: 60px;
        border-radius: 16px;
        border-width: 5px;
    }

    .label-right,
    .label-right1,
    .label-right2 {
        position: static;
        width: 90%;
        max-width: 300px;
        margin: 10px auto 0 auto;
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
        padding: 10px 12px;
    }

}


/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {

    .ipad-App {
        width: 100%;
        height: auto;
        margin-top: 40px;
        background-size: cover;
        background-position: center;
    }

    .ipad-img {
        width: 100%;
        height: auto;
        padding-top: 40px;
    }

    .ipad-text {
        width: 90%;
        max-width: 320px;
        top: auto;
        left: auto;
        margin: 20px auto;
        padding: 20px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .ipad-text p {
        width: 100%;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        text-transform: uppercase;
    }

    .ipad-text span {
        font-size: 16px;
        line-height: 1.3;
        text-align: center;
    }

    .ipad-text h1 {
        width: 100%;
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
        margin-top: -20px;
    }

    .ipad-img1,
    .ipad-img2,
    .ipad-img3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    .ipad-wrapper1 img,
    .ipad-wrapper2 img,
    .ipad-wrapper3 img,
    .ipad-wrapper4 img,
    .ipad-wrapper5 img,
    .ipad-wrapper6 img {
        width: 93%;
        height: auto;
        margin-left: 12px;
        border-radius: 12px;
    }

    .label-right,
    .label-right1,
    .label-right2 {
        position: static;
        width: 90%;
        margin: 10px auto;
        padding: 8px 10px;
        font-size: 12px;
        line-height: 1.3;
        text-align: center;
    }
}

/* ===============================
   425px RESPONSIVE
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {

    .ipad-App {
        width: 100%;
        height: auto;
        margin-top: 40px;
        background-size: cover;
        background-position: center;
    }

    .ipad-img {
        width: 100%;
        height: auto;
        padding-top: 40px;
    }

    .ipad-text {
        width: 90%;
        max-width: 320px;
        top: auto;
        left: auto;
        margin: 20px auto;
        padding: 20px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .ipad-text p {
        width: 100%;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        text-transform: uppercase;
    }

    .ipad-text span {
        font-size: 16px;
        line-height: 1.3;
        text-align: center;
    }

    .ipad-text h1 {
        width: 100%;
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
        margin-top: -20px;
    }

    .ipad-img1,
    .ipad-img2,
    .ipad-img3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    .ipad-wrapper1 img,
    .ipad-wrapper2 img,
    .ipad-wrapper3 img,
    .ipad-wrapper4 img,
    .ipad-wrapper5 img,
    .ipad-wrapper6 img {
        width: 93%;
        height: auto;
        margin-left: 12px;
        border-radius: 12px;
    }

    .label-right,
    .label-right1,
    .label-right2 {
        position: static;
        width: 90%;
        margin: 10px auto;
        padding: 8px 10px;
        font-size: 12px;
        line-height: 1.3;
        text-align: center;
    }
}

/* ===============================
   375px RESPONSIVE
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {

    .ipad-App {
        width: 100%;
        height: auto;
        margin-top: 40px;
        background-size: cover;
        background-position: center;
    }

    .ipad-img {
        width: 100%;
        height: auto;
        padding-top: 40px;
    }

    .ipad-text {
        width: 90%;
        max-width: 320px;
        top: auto;
        left: auto;
        margin: 20px auto;
        padding: 20px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .ipad-text p {
        width: 100%;
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
        text-transform: uppercase;
    }

    .ipad-text span {
        font-size: 14px;
        line-height: 1.3;
        text-align: center;
    }

    .ipad-text h1 {
        width: 100%;
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
        margin-top: -25px;
    }

    .ipad-img1,
    .ipad-img2,
    .ipad-img3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .ipad-wrapper1 img,
    .ipad-wrapper2 img,
    .ipad-wrapper3 img,
    .ipad-wrapper4 img,
    .ipad-wrapper5 img,
    .ipad-wrapper6 img {
        width: 95%;
        height: auto;
        margin-left: 0;
        object-fit: contain;
        border-radius: 12px;
        border: none;
        margin-left: 3%;
    }

    .label-right,
    .label-right1,
    .label-right2 {
        position: static;
        width: 90%;
        margin: 10px auto;
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
        padding: 8px 10px;
    }
}

/* ===============================
   320px RESPONSIVE
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {

    .ipad-App {
        width: 100%;
        height: auto;
        margin-top: 40px;
        background-size: cover;
        background-position: center;
        border-radius: 12px;
    }

    .ipad-img {
        width: 100%;
        height: auto;
        padding-top: 40px;
        margin: auto;
    }

    .ipad-text {
        width: 90%;
        max-width: 280px;
        top: auto;
        left: auto;
        margin: 20px auto;
        padding: 16px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .ipad-text p {
        width: 100%;
        font-size: 12px;
        line-height: 1.3;
        text-align: center;
        text-transform: uppercase;
    }

    .ipad-text span {
        font-size: 14px;
        line-height: 1.2;
        text-align: center;
    }

    .ipad-text h1 {
        width: 100%;
        font-size: 12px;
        line-height: 1.3;
        text-align: center;
    }

    .ipad-img1,
    .ipad-img2,
    .ipad-img3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .ipad-wrapper1,
    .ipad-wrapper2,
    .ipad-wrapper3,
    .ipad-wrapper4,
    .ipad-wrapper5,
    .ipad-wrapper6 {
        position: relative;
        display: block;
        width: 100%;
        margin: auto;
    }

    .ipad-wrapper1 img,
    .ipad-wrapper2 img,
    .ipad-wrapper3 img,
    .ipad-wrapper4 img,
    .ipad-wrapper5 img,
    .ipad-wrapper6 img {
        width: 90%;
        height: auto;
        margin: 0 auto;
        object-fit: contain;
        border-radius: 12px;
        border: none;
        margin-left: 6%;
    }

    .label-right,
    .label-right1,
    .label-right2 {
        position: static;
        width: 90%;
        margin: 8px auto;
        font-size: 12px;
        line-height: 1.3;
        text-align: center;
        padding: 8px 10px;
    }
}













/* ========================================
   Therapist App SECTION
   ======================================== */
    .app-web {
        width: 1520px;
        height: 958px;
        margin: auto;
        margin-top: 140px;
        margin-bottom: 140px;
        background: url(../Assets/trainer/asthi16.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 16px;
    }

    .web-App {
        width: 1033px;
        height: 222px;
        position: relative;
        top: 685px;
        left: 244px;
        border-radius: 16px;
        padding: 40px 80px;
        background: #FFFFFF4D;
        backdrop-filter: blur(7px);
        color: #FAFAFA;
    }

    .web-App:hover {
        transform: scale(1.02);
        transition: 0.3s;
    }

    .web-App p{
        width: 873px;
        height: 74px;
        font-family: JUST Sans;
        font-weight: 400;
        font-style: Regular;
        font-size: 22px;
        line-height: 160%;
        letter-spacing: 0%;
        text-align: center;
        text-transform: uppercase;
        color: #FAFAFA;
    }

    .web-App span {
        font-family: Inter Display;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
        color: #FAFAFA;
        background: none;
        border: none;
    }

    .web-App h1{
        width: 873px;
        height: 58px;
        font-family: JUST Sans;
        font-weight: 400;
        font-style: Regular;
        font-size: 18px;
        line-height: 160%;
        letter-spacing: 0%;
        text-align: center;
        color: #E6E6E6;
    }
/* ===============================
   1440px RESPONSIVE
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {

    .app-web {
        width: 73%;
        height: 620px;
        margin-top: 80px;
        margin-bottom: 80px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
    }

    .web-App {
        width: 65%;
        max-width: 900px;
        height: auto;
        top: 65%;
        left: auto;
        margin: 20px auto;
        padding: 30px 40px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .web-App p {
        width: 100%;
        height: auto;
        font-size: 18px;
        line-height: 1.4;
        text-align: center;
        text-transform: uppercase;
    }

    .web-App span {
        font-size: 24px;
        line-height: 1.2;
        text-align: center;
    }

    .web-App h1 {
        width: 100%;
        height: auto;
        font-size: 16px;
        line-height: 1.4;
        text-align: center;
    }
}

/* ===============================
   1024px RESPONSIVE
================================ */
/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {

    .app-web {
        width: 90%;
        height: 600px;
        margin-top: 80px;
        margin-bottom: 80px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
    }

    .web-App {
        width: 60%;
        max-width: 800px;
        height: auto;
        top: 65%;
        left: auto;
        margin: 20px auto;
        padding: 30px 40px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .web-App p {
        width: 100%;
        font-size: 16px;
        line-height: 1.4;
        text-align: center;
        text-transform: uppercase;
    }

    .web-App span {
        font-size: 22px;
        line-height: 1.2;
        text-align: center;
    }

    .web-App h1 {
        width: 100%;
        font-size: 16px;
        line-height: 1.4;
        text-align: center;
    }

}


/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {

        .app-web {
        width: 850px;
        height: 420px;
        margin-top: 60px;
        margin-bottom: 60px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
    }

    .web-App {
        width: 83%;
        height: auto;
        top: 60%;
        left: auto;
        margin: 20px auto;
        padding: 20px 30px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .web-App p {
        width: 100%;
        height: auto;
        font-size: 16px;
        line-height: 1.4;
        text-align: center;
        text-transform: uppercase;
    }

    .web-App span {
        font-size: 22px;
        line-height: 1.2;
        text-align: center;
    }

    .web-App h1 {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }

}



/* ===============================
   768px RESPONSIVE
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px){

    .app-web {
        width: 630px;
        height: 420px;
        margin-top: 60px;
        margin-bottom: 60px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
    }

    .web-App {
        width: 83%;
        height: auto;
        top: 60%;
        left: auto;
        margin: 20px auto;
        padding: 20px 30px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .web-App p {
        width: 100%;
        height: auto;
        font-size: 16px;
        line-height: 1.4;
        text-align: center;
        text-transform: uppercase;
    }

    .web-App span {
        font-size: 22px;
        line-height: 1.2;
        text-align: center;
    }

    .web-App h1 {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }

}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {

    .app-web {
        width: 100%;
        height: 555px;
        margin: 40px auto;
        margin-bottom: 40px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
    }

    .web-App {
        width: 90%;
        max-width: 320px;
        height: auto;
        top: 65%;
        left: auto;
        margin: 20px auto;
        padding: 20px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .web-App p {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        text-transform: uppercase;
    }

    .web-App span {
        font-size: 18px;
        line-height: 1.2;
        text-align: center;
    }

    .web-App h1 {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        margin: 10px auto 0 auto;
    }
}

/* ===============================
   425px RESPONSIVE
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {

    .app-web {
        width: 100%;
        height: 555px;
        margin: 40px auto;
        margin-bottom: 40px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
    }

    .web-App {
        width: 90%;
        max-width: 320px;
        height: auto;
        top: 65%;
        left: auto;
        margin: 20px auto;
        padding: 20px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .web-App p {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        text-transform: uppercase;
    }

    .web-App span {
        font-size: 18px;
        line-height: 1.2;
        text-align: center;
    }

    .web-App h1 {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        margin: 10px auto 0 auto;
    }
}

/* ===============================
   375px RESPONSIVE
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {

    .app-web {
        width: 100%;
        height: 444px;
        margin-top: 40px;
        margin-bottom: 40px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
    }

    .web-App {
        width: 90%;
        height: auto;
        top: 58%;
        left: auto;
        margin: 20px auto;
        padding: 20px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .web-App p {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        text-transform: uppercase;
    }

    .web-App span {
        font-size: 18px;
        line-height: 1.2;
        text-align: center;
    }

    .web-App h1 {
        width: 100%;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        margin-top: 8px;
    }

}

/* ===============================
   320px RESPONSIVE
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {

    .app-web {
        width: 320px;
        height: 400px;
        margin-top: 40px;
        margin-bottom: 40px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
    }

    .web-App {
        width: 90%;
        height: auto;
        top: 51%;
        left: auto;
        margin: 20px auto;
        padding: 16px 20px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }

    .web-App p {
        width: 100%;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        text-transform: uppercase;
    }

    .web-App span {
        font-size: 18px;
        line-height: 1.2;
        text-align: center;
    }

    .web-App h1 {
        width: 100%;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        margin: 8px auto 0 auto;
    }

}











/* ========================================
   train SECTION
   ======================================== */
.guide {
    width: 1920px;
    height: 1287px;
    padding: 160px 170px;
    background-color:#0D0D0D;
}

.guide-line{
    width: 1520px;
    height: 31px;
    display: flex;
    justify-content: space-between;
}

.guide-line p{
    font-family: Inter Display;
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFF;
}

.guide-tabs {
    width: 510px;
    height: 25px;
    gap: 30px;
}

.guide-tabs {
    font-family: Poppins;
    font-style: Bold;
    font-size: 18px;
    gap: 20px;
    line-height: 1;
    text-transform: uppercase;
    color: #E6E6E6;
}

.guide-tabs span {
    padding-left: 40px;
}

.guide1 {
    width: 1520px;
    height: 274px;
    gap: 106px;
}

.manrope {
    width: 1520px;
    height: 137px;
    padding-top: 125px;
    display: flex;
    justify-content: space-between;
}

.manrope h1 {
    font-family: Poppins;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 100px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #FFF;
}

.manrope-3 {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: right;
    text-transform: uppercase;
    color: #D9D9D9;
}

.guide-color {
    width: 1518px;
    height: 620px;
    padding-top: 40px;
}

.guide-color1 {
    width: 1518px;
    height: 300px;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
}

/*-----------------------------------color1---------------------------------*/
.color1 {
    width: 716px;
    height: 300px;
    background-color: #5CD8FF;
    border-radius: 20px;
    padding: 20px;
    position: relative; 
}

.color1:hover {
    transform: scale(1.02);
    transition: 0.3s;
}


.color1 p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color:  #0D0D0D;
}


.color1 span {
    position: absolute; 
    bottom: 20px;
    right: 20px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    color: #0D0D0D;
}


/*-----------------------------------color2---------------------------------*/
.color2 {
    width: 382px;
    height: 300px;
    background-color: #0084FF;
    border-radius: 20px;
    padding: 20px;
    position: relative; 
}

.color2:hover {
    transform: scale(1.02);
    transition: 0.3s;
}

.color2 p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color:  #0D0D0D;
}


.color2 span {
    position: absolute; 
    bottom: 20px;
    right: 20px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #0D0D0D;
}



/*-----------------------------------color3---------------------------------*/
.color3 {
    width: 382px;
    height: 300px;
    background-color: #2FA6FB;
    border-radius: 20px;
    padding: 20px;
    position: relative; 
}

.color3:hover {
    transform: scale(1.02);
    transition: 0.3s;
}

.color3 p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color:  #0D0D0D;
}


.color3 span {
    position: absolute; 
    bottom: 20px;
    right: 20px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #0D0D0D;
}



.guide-color2 {
    width: 1518px;
    height: 300px;
    display: grid;
    gap: 20px;
    margin-top: 50px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}


/*-----------------------------------color4---------------------------------*/
.color4 {
    width: 382px;
    height: 300px;
    background-color: #DBF0FF;
    border-radius: 20px;
    padding: 20px;
    position: relative; 
}

.color4:hover {
    transform: scale(1.02);
    transition: 0.3s;
}


.color4 p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color:  #0D0D0D;
}


.color4 span {
    position: absolute; 
    bottom: 20px;
    right: 20px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #0D0D0D;
}


/*-----------------------------------color5---------------------------------*/
.color5 {
    width: 382px;
    height: 300px;
    background-color: #BCC1CD;
    border-radius: 20px;
    padding: 20px;
    position: relative; 
}

.color5:hover {
    transform: scale(1.02);
    transition: 0.3s;
}


.color5 p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color:  #0D0D0D;
}


.color5 span {
    position: absolute; 
    bottom: 20px;
    right: 20px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #0D0D0D;
}


/*-----------------------------------color6---------------------------------*/
.color6 {
    width: 382px;
    height: 300px;
    background-color: #F3F1F1;
    border-radius: 20px;
    padding: 20px;
    position: relative; 
}

.color6:hover {
    transform: scale(1.02);
    transition: 0.3s;
}

.color6 p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color:  #0D0D0D;
}


.color6 span {
    position: absolute; 
    bottom: 20px;
    right: 20px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #0D0D0D;
}

/*-----------------------------------color7---------------------------------*/
.color7 {
    width: 382px;
    height: 300px;
    background-color: #000000;
    border-radius: 20px;
    padding: 20px;
    position: relative; 
}

.color7:hover {
    transform: scale(1.02);
    transition: 0.3s;
}

.color7 p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color:  #FFFFFF;
}


.color7 span {
    position: absolute; 
    bottom: 20px;
    right: 20px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
}


/* ===============================
   LARGE SCREEN (max-width:1440px)
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {

    .guide {
        width: 100%;
        height: 1135px;
        padding: 80px 40px;
    }

    .guide-line {
        width: 100%;
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }

    .guide-line p {
        width: 30%;
        font-size: 20px;
    }

    .guide-tabs {
        width: 100%;
        font-size: 16px;
        gap: 15px;
        flex-wrap: wrap;
        text-align: right;
    }

    .guide-tabs span {
        padding-left: 20px;
    }

    .guide1 {
        width: 100%;
        gap: 60px;
    }

    .manrope {
        width: 100%;
        padding-top: 60px;
    }

    .manrope h1 {
        font-size: 60px;
        padding-top: 0;
    }

    .manrope-3 {
        font-size: 16px;
        padding-top: 5px;
        text-align: left;
    }

    .guide-color,
    .guide-color1,
    .guide-color2 {
        width: 100%;
        gap: 15px;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .color1,
    .color2,
    .color3,
    .color4,
    .color5,
    .color6,
    .color7 {
        width: 100%;
        height: auto;
        padding: 16px;
    }

    .color1 p,
    .color2 p,
    .color3 p,
    .color4 p,
    .color5 p,
    .color6 p,
    .color7 p {
        font-size: 16px;
        line-height: 1.3;
    }

    .color1 span,
    .color2 span,
    .color3 span,
    .color4 span,
    .color5 span,
    .color6 span,
    .color7 span {
        font-size: 14px;
    }
}


/* Desktop (1200px - 1439px) */
@media screen and (min-width:1200px) and (max-width:1439px){

/* MAIN SECTION */
.guide{
    width:100%;
    height:auto;
    padding:120px 60px;
}

/* TOP LINE */
.guide-line{
    width:100%;
}

/* GUIDE CONTENT */
.guide1{
    width:100%;
}

.manrope{
    width:100%;
}

.manrope h1{
    font-size:72px;
}

.manrope-3{
    font-size:16px;
}

/* COLOR SECTION */
.guide-color{
    width:100%;
    height:auto;
}

/* FIRST GRID */
.guide-color1{
    width:100%;
    grid-template-columns: 2fr 1fr 1fr;
}

/* SECOND GRID */
.guide-color2{
    width:100%;
    grid-template-columns: repeat(4,1fr);
}

/* REMOVE FIXED WIDTH */
.color1,
.color2,
.color3,
.color4,
.color5,
.color6,
.color7{
    width:100%;
}

}

/* ===============================
   SMALL LAPTOP (max-width:1025px)
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {

.guide{
    width:100%;
    height: auto;
    padding:120px 60px;
}

/* TOP LINE */
.guide-line{
    width:100%;
}

/* GUIDE HEADING SECTION */
.guide1{
    width:100%;
}

.manrope{
    width:100%;
    padding-top:100px;
}

.manrope h1{
    font-size:70px;
}

.manrope-3{
    font-size:16px;
}

/* COLOR SECTION */
.guide-color{
    width:100%;
}

.guide-color1{
    width:100%;
    grid-template-columns: 1fr 1fr;
}

/* first big card */
.color1{
    width:100%;
    height: auto;
    grid-column: span 2;
}

/* normal cards */
.color2,
.color3{
    height: auto;
    width:100%;
}

/* second row */
.guide-color2{
    width:100%;
    grid-template-columns: 1fr 1fr;
    margin-top:40px;
}

.color4,
.color5,
.color6,
.color7{
    height: auto;
    width:100%;
}

}

/* ===============================
   TABLET / SMALL SCREEN (max-width:768px)
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width:768px) and (max-width:991px){

/* MAIN SECTION */
.guide{
    width:100%;
    height:auto;
    padding:100px 40px;
}

/* TOP LINE */
.guide-line{
    width:100%;
    flex-direction:column;
    align-items:center;
    gap:20px;
}

.guide-line p{
    font-size:20px;
    text-align:center;
}

.guide-tabs{
    width:100%;
    text-align:center;
}

/* TITLE SECTION */
.guide1{
    width:100%;
    height:auto;
}

.manrope{
    width:100%;
    height:auto;
    padding-top:80px;
    flex-direction:column;
    align-items:center;
    gap:20px;
}

.manrope h1{
    font-size:60px;
    text-align:center;
}

.manrope-3{
    text-align:center;
    font-size:16px;
}

/* COLOR AREA */
.guide-color{
    width:100%;
    height:auto;
}

/* FIRST GRID */
.guide-color1{
    width:100%;
    height:auto;
    grid-template-columns:1fr 1fr;
}

/* SECOND GRID */
.guide-color2{
    width:100%;
    height:auto;
    margin-top:30px;
    grid-template-columns:1fr 1fr;
}

/* COLOR BOXES */
.color1,
.color2,
.color3,
.color4,
.color5,
.color6,
.color7{
    width:100%;
    height:250px;
}

}

/* ===============================
   MOBILE (max-width:425px)
================================ */
/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {

    .guide {
        width: 100%;
        padding: 40px 20px;
        height: auto;
    }

    .guide-line {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .guide-line p {
        font-size: 16px;
        line-height: 1.2;
        text-align: center;
    }

    .guide-tabs {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        font-size: 14px;
        justify-content: center;
        padding-left: 0;
    }

    .guide-tabs span {
        padding-left: 0;
    }

    .guide1 {
        width: 100%;
        flex-direction: column;
        gap: 20px;
    }

    .manrope {
        width: 100%;
        flex-direction: column;
        gap: 10px;
        padding-top: 40px;
    }

    .manrope h1 {
        font-size: 36px;
        text-align: center;
        padding-top: 0;
        margin: auto;
        margin-top: 40px;
    }

    .manrope-3 {
        font-size: 14px;
        text-align: center;
        padding-top: 0;
        margin: auto;
    }

    .guide-color,
    .guide-color1,
    .guide-color2 {
        width: 100%;
        grid-template-columns: 1fr !important;
        gap: 15px;
        margin-top: -2px;
    }

    /* Color boxes scale down */
    .color1,
    .color2,
    .color3,
    .color4,
    .color5,
    .color6,
    .color7 {
        width: 100%;
        height: auto;
        padding: 15px;
    }

    .color1 p,
    .color2 p,
    .color3 p,
    .color4 p,
    .color5 p,
    .color6 p,
    .color7 p {
        font-size: 14px;
    }

    .color1 span,
    .color2 span,
    .color3 span,
    .color4 span,
    .color5 span,
    .color6 span,
    .color7 span {
        font-size: 12px;
    }
}

/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px){

/* MAIN SECTION */
.guide{
    width:100%;
    height:auto;
    padding:60px 20px;
}

/* TOP LINE */
.guide-line{
    width:100%;
    height:auto;
    flex-direction:column;
    gap:15px;
}

.guide-line p{
    font-size:18px;
    text-align:center;
}

/* TABS */
.guide-tabs{
    width:100%;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
    font-size:14px;
}

.guide-tabs span{
    padding-left:10px;
}

/* TITLE AREA */
.guide1{
    width:100%;
    height:auto;
}

.manrope{
    width:100%;
    height:auto;
    padding-top:60px;
    flex-direction:column;
    gap:20px;
    align-items:center;
}

.manrope h1{
    font-size:42px;
    text-align:center;
}

.manrope-3{
    font-size: 14px;
    text-align:center;
}

/* COLOR SECTION */
.guide-color{
    width:100%;
    height:auto;
}

/* FIRST GRID */
.guide-color1{
    width:100%;
    grid-template-columns:1fr;
}

/* SECOND GRID */
.guide-color2{
    width:100%;
    grid-template-columns:1fr;
    margin-top:20px;
}

/* ALL COLOR BOX */
.color1,
.color2,
.color3,
.color4,
.color5,
.color6,
.color7{
    width:100%;
    height: auto;
}

/* TEXT */
.color1 p,
.color2 p,
.color3 p,
.color4 p,
.color5 p,
.color6 p,
.color7 p{
    font-size:16px;
}

.color1 span,
.color2 span,
.color3 span,
.color4 span,
.color5 span,
.color6 span,
.color7 span{
    font-size:14px;
}

}

/* ===============================
   MOBILE (max-width:375px)
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width:479px){

/* MAIN SECTION */
.guide{
    width:100%;
    height:auto;
    padding:60px 20px;
}

/* TOP LINE */
.guide-line{
    width:100%;
    flex-direction:column;
    gap:15px;
}

.guide-line p{
    font-size:18px;
}

.guide-tabs{
    width:100%;
    display:flex;
    gap:15px;
    font-size:14px;
}

.guide-tabs span{
    padding-left:0;
}

/* HEADING SECTION */
.guide1{
    width:100%;
    height:auto;
}

.manrope{
    width:100%;
    height:auto;
    flex-direction:column;
    gap:20px;
    padding-top:60px;
}

.manrope h1{
    font-size:42px;
}

.manrope-3{
    font-size: 12px;
    text-align:left;
}

/* COLOR SECTION */
.guide-color{
    width:100%;
    height:auto;
}

/* FIRST GRID */
.guide-color1{
    width:100%;
    grid-template-columns:1fr;
}

/* SECOND GRID */
.guide-color2{
    width:100%;
    grid-template-columns:1fr;
    margin-top:20px;
}

/* ALL COLOR BOX */
.color1,
.color2,
.color3,
.color4,
.color5,
.color6,
.color7{
    width:100%;
    height:auto
}

.color1 p,
.color2 p,
.color3 p,
.color4 p,
.color5 p,
.color6 p,
.color7 p{
    font-size:16px;
}

.color1 span,
.color2 span,
.color3 span,
.color4 span,
.color5 span,
.color6 span,
.color7 span{
    font-size:14px;
}

}

/* ===============================
   EXTRA SMALL DEVICES (max-width:320px)
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px){

/* MAIN SECTION */
.guide{
    width:100%;
    height:auto;
    padding:60px 16px;
}

/* TOP LINE */
.guide-line{
    width:100%;
    height:auto;
    flex-direction:column;
    align-items:center;
    gap:15px;
}

.guide-line p{
    font-size:18px;
    text-align:center;
}

/* TABS */
.guide-tabs{
    width:100%;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    font-size:14px;
}

.guide-tabs span{
    padding-left:0;
}

/* TITLE SECTION */
.guide1{
    width:100%;
    height:auto;
}

.manrope{
    width:100%;
    height:auto;
    padding-top:60px;
    flex-direction:column;
    gap:20px;
    text-align:center;
}

.manrope h1{
    font-size:40px;
}

.manrope-3{
    font-size: 10px;
    text-align:center;
}

/* COLOR SECTION */
.guide-color{
    width:100%;
    height:auto;
}

/* FIRST GRID */
.guide-color1{
    width:100%;
    grid-template-columns:1fr;
    gap:16px;
}

/* SECOND GRID */
.guide-color2{
    width:100%;
    grid-template-columns:1fr;
    gap:16px;
    margin-top:20px;
}

/* ALL COLOR BOXES */
.color1,
.color2,
.color3,
.color4,
.color5,
.color6,
.color7{
    width:100%;
    height:auto;
}

/* TEXT SIZE */
.color1 p,
.color2 p,
.color3 p,
.color4 p,
.color5 p,
.color6 p,
.color7 p{
    font-size:16px;
}

.color1 span,
.color2 span,
.color3 span,
.color4 span,
.color5 span,
.color6 span,
.color7 span{
    font-size:13px;
}

}










/* ========================================
   ai SECTION
   ======================================== */

/* Main Section */
.ai-section{
    position:relative;
    width:1400px;
    height: 755px;
    margin: auto;
    padding-top: 160px;
}

/* Laptop */
.laptop{
    position:absolute;
    left:-80px;
    top:-40px;
    z-index:2;
}

.laptop img{
    width: 626px;
    height: 626px;
    object-fit: cover;
    margin-top: 160px;
    border-radius: 16px;
    margin-left: 855px;
}

/* Right Card */
.content-card{
    width: 100%;
    max-width: 900px;
    height: 550px;
    background: linear-gradient(89.85deg, #9ABBDA 0.36%, #9EBDDA 9.21%, #C8D8E8 158.52%, #C9D9E8 167%);
    border-radius:15px;
    padding: 68px 60px 60px 90px;
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

/* Text */
.content-card h1{
    width: 526px;
    height: 94px;
    font-family: JUST Sans;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom:15px;
}

.content-card p{
    width: 526px;
    font-family: JUST Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin-bottom:25px;
}

/* Buttons */
.buttons{
    display:flex;
    gap:15px;
}

.btn-outline{
    min-width: 180px;
    padding:12px 20px;
    border:1px solid #1C1C1C;
    background:transparent;
    color: #1C1C1C;
    border-radius:5px;
    cursor:pointer;
    font-family: JUST Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 135%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
}

.btn-outline:hover {
    background-color: #000;
    color: #fff;
    transform: scale(1.02);
    transition: 0.3s;
}

.btn-white{
    min-width: 180px;
    padding:12px 20px;
    border:1px solid #1C1C1C;
    background: #1C1C1C;
    color: #FFFFFF;
    border-radius:5px;
    cursor:pointer;
    font-family: JUST Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 135%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    }

.btn-white:hover {
    background-color: transparent;
    color: #000;
    transform: scale(1.02);
    transition: 0.3s;
}

/* ========================= */
/* 1440px Responsive */
/* ========================= */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
    .ai-section {
        width: 100%;
        max-width: 1200px;
        height: auto;
        padding-top: 120px;
        margin: 0 auto;
        position: relative;
    }

    /* Laptop */
    .laptop {
        left: -50px;
        top: -20px;
    }

    .laptop img {
        width: 633px;
        height: auto;
        margin-top: 110px;
        margin-left: 665px;
    }

    /* Right Card */
    .content-card {
        width: 90%;
        max-width: 900px;
        height: 370px;
        padding: 50px 40px 40px 50px;
    }

    /* Text */
    .content-card h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .content-card p {
        font-size: 14px;
        margin-bottom: 20px;
        margin-top: -50px;
    }

    /* Buttons */
    .buttons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn-outline,
    .btn-white {
        padding: 8px 18px;
        font-size: 14px;
    }
}

/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {
    .ai-section {
        width: 95%;
        height: 420px;
        padding-top: 100px;
    }

    /* Laptop Image */
    .laptop {
        left: -40px;
        top: -20px;
    }

    .laptop img {
        width: 568px;
        height: 350px;
        margin-top: 73px;
        margin-left: 605px;
    }

    /* Content Card */
    .content-card {
        width: 100%;
        height: auto;
        padding: 50px 40px 40px 30px;
        flex-direction: column;
        justify-content: center;
        border-radius: 15px;
    }

    .content-card h1 {
        width: 50%;
        font-size: 24px;
        margin-bottom: 12px;
    }

    .content-card p {
        width: 50%;
        font-size: 14px;
        margin-bottom: 20px;
        margin-top: -4%;
    }

    /* Buttons */
    .buttons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn-outline, .btn-white {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* ========================= */
/* 1024px Responsive */
/* ========================= */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .ai-section {
        width: 95%;
        height: auto;
        padding-top: 100px;
    }

    /* Laptop Image */
    .laptop {
        left: -40px;
        top: -20px;
    }

    .laptop img {
        width: 568px;
        height: 350px;
        margin-top: 73px;
        margin-left: 460px;
    }

    /* Content Card */
    .content-card {
        width: 85%;
        height: auto;
        padding: 50px 40px 40px 30px;
        flex-direction: column;
        justify-content: center;
        border-radius: 15px;
    }

    .content-card h1 {
        width: 50%;
        font-size: 24px;
        margin-bottom: 12px;
    }

    .content-card p {
        width: 50%;
        font-size: 14px;
        margin-bottom: 20px;
        margin-top: -4%;
    }

    /* Buttons */
    .buttons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn-outline, .btn-white {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* ========================= */
/* 768px Responsive */
/* ========================= */
/* Tablet (768px - 991px) */
@media screen and (min-width:768px) and (max-width:991px){

    .ai-section {
        width: 95%;
        height: auto;
        padding-top: 70px;
    }

    /* Laptop Image */
    .laptop {
        left: -40px;
        top: -20px;
    }

    .laptop img {
        width: 60%;
        height: 60%;
        margin-top: 73px;
        margin-left: 319px;
    }

    /* Content Card */
    .content-card {
        width: 63%;
        height: auto;
        padding:23px 0 22px 32px;
        flex-direction: column;
        justify-content: center;
        border-radius: 15px;
    }

    .content-card h1 {
        width: 50%;
        font-size: 24px;
        margin-bottom: 12px;
    }

    .content-card p {
        width: 50%;
        font-size: 14px;
        margin-bottom: 20px;
        margin-top: -4%;
    }

    /* Buttons */
    .buttons {
        width: 50%;
        flex-direction: column;
        gap: 10px;
    }

    .btn-outline, .btn-white {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px){

.ai-section{
    width:100%;
    height:auto;
    padding:60px 20px 20px 20px;
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* Laptop */
.laptop{
    position:relative;
    left:0;
    top:0;
    margin-bottom:20px;
}

.laptop img{
    width:320px;
    height:auto;
    margin:0;
    border-radius:12px;
}

/* Card */
.content-card{
    max-width:90%;
    height:auto;
    padding:40px 25px;
    text-align:center;
    align-items:center;
}

/* Heading */
.content-card h1{
    width:100%;
    height:auto;
    font-size:24px;
    line-height:120%;
}

/* Paragraph */
.content-card p{
    width:100%;
    font-size:16px;
    line-height:150%;
}

/* Buttons */
.buttons{
    flex-direction:column;
    width:100%;
    gap:12px;
}

.btn-outline,
.btn-white{
    width:100%;
    font-size:16px;
}
}

/* ========================= */
/* 425px Responsive */
/* ========================= */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px){

.ai-section{
    width:100%;
    height:auto;
    padding:60px 20px 20px 20px;
}

/* Laptop */
.laptop{
    position:relative;
    left:0;
    top:0;
    text-align:center;
}

.laptop img{
    width:320px;
    height:auto;
    margin:0 auto;
    display:block;
}

/* Card */
.content-card{
    max-width:100%;
    height:auto;
    margin-top: 0;
    padding:40px 25px;
    margin-top:20px;
    text-align:center;
}

/* Text */
.content-card h1{
    width:100%;
    height:auto;
    font-size:24px;
    line-height:120%;
}

.content-card p{
    width:100%;
    font-size:16px;
}

/* Buttons */
.buttons{
    flex-direction:column;
    align-items:center;
    gap:10px;
}

.btn-outline,
.btn-white{
    width:100%;
    max-width:220px;
}
}

/* ========================= */
/* 375px Responsive */
/* ========================= */
/* Mobile Small (375px - 479px) */
@media screen and (max-width:479px){

.ai-section{
    width:100%;
    height:auto;
    padding-top:60px;
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* Laptop Image */
.laptop{
    position:relative;
    left:0;
    top:0;
    margin-bottom:20px;
}

.laptop img{
    width:260px;
    height:260px;
    margin:0;
}

/* Card */
.content-card{
    width:90%;
    height:auto;
    margin-top: 0;
    padding:30px 20px;
    text-align:center;
    align-items:center;
}

/* Text */
.content-card h1{
    width:100%;
    height:auto;
    font-size:22px;
}

.content-card p{
    width:100%;
    font-size:14px;
}

/* Buttons */
.buttons{
    flex-direction:column;
    width:100%;
}

.btn-outline,
.btn-white{
    width:100%;
    font-size:14px;
}
}


/* ========================= */
/* 320px Responsive */
/* ========================= */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width:374px){

.ai-section{
    width:100%;
    height:auto;
    padding-top:40px;
}

/* Laptop Image */
.laptop{
    position:relative;
    left:0;
    top:0;
    text-align:center;
}

.laptop img{
    width:260px;
    height:auto;
    margin:0 auto 20px auto;
    display:block;
}

/* Card */
.content-card{
    max-width:100%;
    height:auto;
    padding:30px 20px;
    border-radius:12px;
    margin-top: 0;
}

/* Heading */
.content-card h1{
    width:100%;
    height:auto;
    font-size:20px;
    line-height:130%;
    margin-bottom:10px;
}

/* Paragraph */
.content-card p{
    width:100%;
    font-size:14px;
    line-height:150%;
    margin-bottom:20px;
}

/* Buttons */
.buttons{
    flex-direction:column;
    gap:10px;
}

.btn-outline,
.btn-white{
    width:100%;
    font-size:14px;
    padding:10px;
}

}








/* ========================================
   work SECTION
   ======================================== */
.work-section{
    width: 1620px;
    height: 877px;
    padding-top: 160px;
    margin: 0 auto;
}

.work-section h2{
    width: 245px;
    height: 47px;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 36px;
    line-height: 1;
    text-transform: uppercase;
    color: #262626;
}

.work-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
padding-top: 60px;
}

/* CARD */
.work-card{
    width: 512px;
    height: 560px;
    gap: 18px;
    text-align:left;
}

/* IMAGE AREA */
.image-box{
    position:relative;
    width: 512px;
    height: 405px;
    background-image: url(../Assets/trainer/simon38.webp);
    border-radius:40px;
    overflow:hidden;
}

.image-box:hover img {
    transform: scale(1.05);
    transition: transform 0.4s ease;
}

.image-box.blue{
    position:relative;
    width: 512px;
    height: 405px;
    background-image: url(../Assets/trainer/simon39.webp);
    border-radius:40px;
    overflow:hidden;
}

.image-box.purple{
    position:relative;
    width: 512px;
    height: 405px;
    background-image: url(../Assets/trainer/simon40.webp);
    border-radius:40px;
    overflow:hidden;
    background-color: #fff;
}

/* MOBILE IMAGES */
.mobile{
position:absolute;
bottom:-10px;
width:130px;
filter:drop-shadow(0px 8px 20px rgba(0,0,0,0.25));
}

/* FIRST PHONE */
.img1{
left:35%;
z-index:1;
}

/* SECOND PHONE */
.img2{
left:55%;
z-index:2;
}

.image-box .img1{
    width: 202px;
    height: 410px;
    left: 100px;
    position: absolute;
    top: 85px;
    border-radius: 10px;
}

.image-box .img2{
    width: 201px;
    height: 416px;
    position: absolute;
    left: 260px;
    top: 145px;
}

/* Second Mobile */
.image-box.blue .mobile-img4{
    width: 534px;
    height: 303px;
    position: absolute;
    left: -14px;
    top: 104px;
}

/* Second Mobile */
.image-box.purple .mobile-img6{
    width: 378px;
    height: 505px;
    position: absolute;
    left: 67px;
    top: 104px;
    border-radius: 10px;
    border: 8px solid #000;
}

/* TEXT */
.work-card h4{
  font-family: JUST Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    text-transform: uppercase;
  color: #4D4D4D;
  padding-top: 20px;
}

.work-card p{
  font-family: JUST Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0%;
    text-transform: capitalize;
  color: #262626;
  padding-top: 20px;
}

/* ===============================
   WORK SECTION - LARGE SCREEN (max-width:1440px)
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px){

  /* SECTION */
  .work-section {
    width: 100%;
    padding: 120px 35px;
    height: auto;
    margin: 0 auto;
  }

  /* HEADING */
  .work-section h2 {
    font-size: 32px;
    width: 100%;
    height: auto;
  }

  /* GRID */
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 50px;
  }

  /* CARD */
  .work-card {
    width: 100%;
    max-width: 460px;
    height: auto;
    gap: 15px;
    text-align: left;
  }

  .image-box{
    max-width: 440px;
  }

  .image-box .img1{
    width: 215px;
    height: 326px;
    left: 70px;
    top: 100px;
  }
  
  .image-box .img2{
    width: 160px;
    height: 320px;
    left: 240px;
    top: 146px;
  }

  .image-box.blue .mobile-img4 {
    width: 470px;
    height: 303px;
    position: absolute;
    left: -14px;
    top: 104px;
  }

  .image-box.purple .mobile-img6 {
    width: 353px;
    height: 505px;
    position: absolute;
    left: 44px;
    top: 104px;
    border-radius: 10px;
    border: 8px solid #000;
  }

  /* TEXT */
  .work-card h4 {
    font-size: 18px;
    padding-top: 15px;
  }

  .work-card p {
    font-size: 22px;
    padding-top: 15px;
  }
}

/* ===============================
   WORK SECTION - MEDIUM SCREEN (max-width:1200px)
================================ */
/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px){

  /* SECTION */
  .work-section {
    width: 95%;
    padding-top: 120px;
    margin: 0 auto;
  }

  .work-section h2 {
    font-size: 32px;
    width: 100%;
  }

  /* GRID */
  .work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr ;
    justify-content: center;
    align-content: center;
    gap: 30px;
    padding-top: 50px;
  }

  /* CARD */
  .work-card {
    width: 100%;
    height: auto;
    text-align: left;
    gap: 15px;
  }

  /* IMAGE AREA */
  .image-box{
    width: 380px; 
    height: 280px;
    background-size: cover;
  }
  
 .image-box .img1{
    width: 160px;
    height: 270px;
    left: 70px;
    top: 77px;
  }
  
  .image-box .img2{
    width: 144px;
    height: 270px;
    left: 189px;
    top: 110px; 
  }

  .image-box.blue {
    width: 380px; 
    height: 280px;
    background-size: cover;
  }
  
  .image-box.blue .mobile-img4{
    width: 382px;
    height: 270px;
    left: -2px;
    top: 82px;
  }

  .image-box.purple  {
    width: 380px; 
    height: 280px;
    background-size: cover;
  }

  .image-box.purple .mobile-img6 {
     width: 270px;
    height: 270px;
    left: 50px;
    top: 70px; 
  }

  /* TEXT */
  .work-card h4 {
    font-size: 18px;
    padding-top: 15px;
  }

  .work-card p {
    font-size: 20px;
    padding-top: 15px;
  }

}

/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px){

.work-section{
    width: 100%;
    height: auto;
    padding-top: 120px;
    padding-left: 40px;
    padding-right: 40px;
}

/* Grid */
.work-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Card */
.work-card{
    width: 100%;
    height: auto;
}

/* Image box */
.image-box,
.image-box.blue,
.image-box.purple{
    width: 100%;
    height: 330px;
    background-size: cover;
    background-position: center;
}

/* Mobiles */
.image-box .img1{
    width: 150px;
    height: auto;
    left: 60px;
    top: 70px;
}

.image-box .img2{
    width: 150px;
    height: auto;
    left: 180px;
    top: 120px;
}

/* Blue section image */
.image-box.blue .mobile-img4{
    width: 100%;
    height: auto;
    left: 0;
    top: 90px;
}

/* Purple section image */
.image-box.purple .mobile-img6{
    width: 390px;
    height: auto;
    left: 40px;
    top: 80px;
}

/* Text */
.work-card h4{
    font-size: 18px;
}

.work-card p{
    font-size: 20px;
}

}

/* ===============================
   WORK SECTION - TABLET/MOBILE (max-width:768px)
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px){

  /* MAIN SECTION */
  .work-section{
    width: 90%;
    height: 1100px;
    padding-top: 140px;
    margin: 0 auto;
    min-height: auto;
  }

  .work-section h2{
    width: 100%;
    font-size: 28px;
    text-align: center;
  }

  /* GRID LAYOUT */
  .work-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-top: 40px;
  }

  /* CARD */
  .work-card{
    width: 100%;
    height: auto;
    gap: 12px;
    text-align: center;
  }

  /* IMAGE AREA */
  .image-box{
    width: 320px; 
    height: 280px;
    background-size: cover;
  }
  
 .image-box .img1{
    width: 148px;
    height: 270px;
    left: 30px;
    top: 63px;
  }
  
  .image-box .img2{
    width: 135px;
    height: 270px;
    left: 150px;
    top: 99px; 
  }

  .image-box.blue {
    width: 320px; 
    height: 280px;
    background-size: cover;
  }
  
  .image-box.blue .mobile-img4{
    width: 340px;
    height: 270px;
    left: -7px;
    top: 70px; 
  }

  .image-box.purple  {
    width: 320px; 
    height: 280px;
    background-size: cover;
  }

  .image-box.purple .mobile-img6 {
     width: 280px;
    height: 270px;
    left: 19px;
    top: 73px; 
  }

  /* TEXT */
  .work-card h4{
    font-size: 16px;
    padding-top: 15px;
  }

  .work-card p{
    font-size: 20px;
    padding-top: 15px;
  }

}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {

  /* MAIN SECTION */
  .work-section{
    width: 100%;
    height: 1350px;
    padding-top: 80px;
  }

  .work-section h2{
    width: 90%;
    font-size: 24px;
    text-align: center;
    margin: 0 auto;
    line-height: 1.2;
  }

  /* GRID STACKED */
  .work-grid{
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 40px;
  }

  /* CARD */
  .work-card{
    width: 90%;
    margin: 0 auto;
    height: auto;
    gap: 12px;
    text-align: center;
    padding: 0;
  }

  /* IMAGE AREA */
  .image-box{
    width: 380px; 
    height: 280px;
    background-size: cover;
    margin-left: -30px;
    margin: auto;
  }
  
 .image-box .img1{
    width: 170px;
    height: 270px;
    left: 60px;
    top: 74px;
  }
  
  .image-box .img2{
    width: 135px;
    height: 270px;
    left: 195px;
    top: 115px;
  }

  .image-box.blue {
    width: 380px; 
    height: 280px;
    background-size: cover;
    margin: auto;
  }
  
  .image-box.blue .mobile-img4{
    width: 401px;
    height: 270px;
    left: -5px;
    top: 75px;
  }

  .image-box.purple  {
    width: 380px; 
    height: 280px;
    background-size: cover;
    margin: auto;
  }

  .image-box.purple .mobile-img6 {
     width: 280px;
    height: 270px;
    left: 50px;
    top: 70px; 
  }

  /* TEXT */
  .work-card h4{
    font-size: 16px;
    padding-top: 12px;
  }

  .work-card p{
    font-size: 18px;
    padding-top: 12px;
  }

}

/* ===============================
   WORK SECTION - MOBILE (max-width:425px)
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {

  /* MAIN SECTION */
  .work-section{
    width: 100%;
    padding-top: 80px;
  }

  .work-section h2{
    width: 90%;
    font-size: 24px;
    text-align: center;
    margin: 0 auto;
    line-height: 1.2;
  }

  /* GRID STACKED */
  .work-grid{
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 40px;
  }

  /* CARD */
  .work-card{
    width: 90%;
    margin: 0 auto;
    height: auto;
    gap: 12px;
    text-align: center;
    padding: 0;
  }

  /* IMAGE AREA */
  .image-box{
    width: 380px; 
    height: 280px;
    background-size: cover;
  }
  
 .image-box .img1{
    width: 170px;
    height: 270px;
    left: 60px;
    top: 74px;
  }
  
  .image-box .img2{
    width: 135px;
    height: 270px;
    left: 195px;
    top: 115px;
  }

  .image-box.blue {
    width: 380px; 
    height: 280px;
    background-size: cover;
  }
  
  .image-box.blue .mobile-img4{
    width: 401px;
    height: 270px;
    left: -5px;
    top: 75px;
  }

  .image-box.purple  {
    width: 380px; 
    height: 280px;
    background-size: cover;
  }

  .image-box.purple .mobile-img6 {
     width: 280px;
    height: 270px;
    left: 50px;
    top: 70px; 
  }

  /* TEXT */
  .work-card h4{
    font-size: 16px;
    padding-top: 12px;
  }

  .work-card p{
    font-size: 18px;
    padding-top: 12px;
  }

}

/* ===============================
   WORK SECTION - SMALL MOBILE (max-width:375px)
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {

  /* SECTION */
  .work-section {
    width: 100%;
    padding-top: 80px;
    margin: 0 auto;
  }

  .work-section h2 {
    width: 100%;
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
  }

  /* GRID */
  .work-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 column */
    gap: 30px;
    padding-top: 40px;
  }

  /* CARD */
  .work-card {
    width: 90%;
    margin: auto;
    height: auto;
    gap: 12px;
    text-align: center;
    padding: 0;
  }

  .image-box{
    width: 340px; 
    height: 270px;
    background-size: cover;
  }
  
 .image-box .img1{
    width: 155px;
    height: 270px;
    left: 45px;
    top: 63px;
  }
  
  .image-box .img2{
    width: 128px;
    height: 270px;
    left: 170px;
    top: 100px; 
  }

  .image-box.blue {
    width: 340px; 
    height: 270px;
    background-size: cover;
  }
  
  .image-box.blue .mobile-img4{
    width: 360px;
    height: 270px;
    left: -10px;
    top: 71px; 
  }

  .image-box.purple  {
    width: 340px; 
    height: 270px;
    background-size: cover;
  }

  .image-box.purple .mobile-img6 {
     width: 266px;
    height: 270px;
    left: 38px;
    top: 60px; 
  }

  /* TEXT */
  .work-card h4 {
    font-size: 16px;
    padding-top: 10px;
  }

  .work-card p {
    font-size: 18px;
    padding-top: 10px;
  }

}

/* ===============================
   WORK SECTION - MOBILE 320px
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {

  .work-section {
    width: 100%;
    height: 1190px;
    padding-top: 60px;
    padding-left: 10px;
    padding-right: 10px;
    background-size: cover;
    background-position: center;
  }

  /* Phones stack vertically */
  .work-phones {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }

  .work-phones img {
    max-width: 180px;  /* smaller phones */
    height: auto;
    transform: translateY(0);
  }

 .image-box{
    width: 280px; 
    height: 220px;
    margin-left: 10px;
    background-size: cover;
    margin-left: -2px;
  }
  
 .image-box .img1{
    width: 135px;
    height: 270px;
    left: 36px;
    top: 51px;
  }
  
  .image-box .img2{
    width: 115px;
    height: 270px;
    left: 133px;
    top: 85px; 
  }

  .image-box.blue {
    width: 280px; 
    height: 220px;
    margin-left: 10px;
    background-size: cover;
    margin-left: -2px;
  }

  .image-box.blue .mobile-img4{
    width: 285px;
    height: 270px;
    left: -2px;
    top: 53px; 
  }

  .image-box.purple  {
    width: 280px; 
    height: 220px;
    background-size: cover;
    margin-left: -2px;
  }

  .image-box.purple .mobile-img6 {
    width: 251px;
    height: 270px;
    left: 16px;
    top: 53px;
  }

  /* Text below phones */
  .work-section .work-text {
    margin-top: 20px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .work-section .work-text h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .work-section .work-text p {
    font-size: 18px;
    line-height: 1.4;
  }

  /* Optional: adjust overlay opacity if used */
  .work-overlay {
    background: rgba(0,0,0,0.1);
  }
}









/* ========================================
   BASE STYLES - Desktop First (1920px)
   ======================================== */
.footer-section {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    background: #FAFAFA;
    border-top: 0.5px #E6E6E6 solid;
    display: flex;
    justify-content: center;
    padding: clamp(40px, 6.25vw, 120px) 0;
    box-sizing: border-box;
}

/* Container inside footer */
.footer-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: clamp(20px, 3.125vw, 60px);
    gap: clamp(40px, 6.25vw, 120px);
    box-sizing: border-box;
}

/* Top content row */
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: clamp(30px, 4vw, 60px);
    align-items: start;
}

/* Left column with title and button */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 1.25vw, 24px);
    max-width: 500px;
}

.footer-title {
    font-family: Inter Display;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #1C1C1C;
}

.footer-button {
    width: 100%;
    max-width: 100%;
    padding: 12px 20px;
    display: flex;
    background-color: #1C1C1C;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-button a {
    display: flex;
    grid-template-columns: column;
    text-decoration: none;
    color: #ffffff;
}

.footer-button:hover {
    background: #333;
    transform: translateY(-2px);
}

.footer-section a {
    text-decoration: none !important;
}   

.button-text {
    font-family: JUST Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 135%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
    /* white-space: nowrap; */
}

.button-arrow {
    width: 20px;
    height: 20px;
    margin-left: 5px;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-arrow::before {
    content: '→';
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

.icon {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 50%;
}

.icon a img{
  transition:transform 0.3s ease;
}

.icon a:hover img{
  transform:scale(1.30);
}

/* Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 0.83vw, 16px);
    font-family: "JUST Sans", sans-serif;
    min-width: 140px;
}

.footer-column a {
    font-family: JUST Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #4D4D4D;
}

.footer-bottom a{
    text-decoration: none;
    color: #4D4D4D;
}

.footer-column a:hover {
    color: #1A1A1A;
}

.footer-column div {
    color: #4D4D4D;
    font-size: clamp(14px, 0.83vw, 16px);
    line-height: 1.5;
}

.footer-column div a {
    color: #4D4D4D;
}

.footer-column div a:hover {
    color: #1A1A1A;
}

.column-title {
    font-family: JUST Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
    color: #1C1C1C;
}

/* Footer bottom row */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-family: JUST Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #4D4D4D;
}

.footer-bottom div:last-child {
    text-align: right;
}

/* Image Section */
.footer-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-image img {
    width: 100%;
    max-width: 1920px;
    height: auto;
    object-fit: contain;
}

/* ========================================
   MEDIA QUERIES - Breakpoint Adjustments
   ======================================== */

/* Large Desktop (1440px - 1920px) */
@media (max-width: 1920px) and (min-width: 1441px) {
    .footer-section {
        padding: 0;
    }
    
    .footer-container {
        padding: 50px;
        gap: 100px;
    }
}

/* Desktop/Laptop (1280px - 1440px) */
@media (max-width: 1440px) {
    .footer-section {
        padding: 80px 0;
    }

    .icon{
        width: 50%;
    }
    
    .footer-container {
        padding: 40px;
        gap: 80px;
    }
    
    .footer-top {
        gap: 50px;
    }
}

/* Small Laptop (1024px - 1279px) */
@media (max-width: 1279px) {
    .footer-section {
        padding: 60px 0;
    }
    
    .footer-container {
        padding: 30px;
        gap: 60px;
    }

    .icon {
        width: 50%;
    }
    
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .footer-left {
        grid-column: 1 / -1;  
        max-width: 100%;
    }
}

/* Tablet Portrait & Landscape (769px - 1023px) */
@media (max-width: 1024px) {
    .footer-section {
        padding: 50px 0;
    }
    
    .footer-container {
        padding: 25px;
        gap: 50px;
    }
    
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }   

    .icon {
        width: 30%;
    }
    
    .footer-left {
        max-width: 100%;
    }
    
    .footer-title {
        font-size: 32px;
    }
    
    .footer-bottom {
        gap: 16px;
    }
    
    .footer-bottom div:last-child {
        text-align: left;
    }
}

/* Tablet (481px - 768px) */
@media screen and (max-width: 768px) {
    .nav-header {
    padding: 10px 20px;
  }

  /* Show hamburger */
  .menu-toggle {
    display: block;
  }

  /* Hide desktop nav */
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; /* below header */
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    gap: 20px;
    padding: 25px 20px;
    border-top: 1px solid #eee;
  }

  /* When menu is open */
  .nav-links.active {
    display: flex;
    background-color: #000000F2;
  }

  .icon {
    width: 30%;
  }

  /* Center links */
  .nav-item-wrapper {
    width: 100%;
    justify-content: center;
  }

  .nav-item {
    font-size: 18px;
  }

  /* Hide desktop CTA */
  .desktop-only {
    display: none;
  }

  /* Show mobile CTA */
  .mobile-cta {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .cta-button {
    width: 100%;
    max-width: 280px;
  }

    .footer-section {
        padding: 40px 0;
    }
    
    .footer-container {
        padding: 20px;
        gap: 40px;
    }
    
    .footer-top {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 32px 24px;
    }
    
    .footer-left {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    
    .footer-title {
        font-size: 28px;
    }
    
    .footer-button {
        padding: 16px 24px;
    }
}

/* Large Mobile (376px - 480px) */
@media (max-width: 480px) {
    .footer-section {
        padding: 32px 0;
    }
    
    .footer-container {
        padding: 16px;
        gap: 32px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }
    
    .footer-left {
        grid-column: 1 / -1;
    }

    .icon {
        width: 100%;
        gap: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .footer-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .footer-button {
        width: 100%;
        padding: 16px 20px;
    }
    
    .footer-bottom {
        gap: 12px;
        font-size: 13px;
    }
    
    .footer-bottom div {
        text-align: left;
    }
}

/* Small Mobile (320px - 375px) */
@media (max-width: 375px) {
    .footer-section {
        padding: 24px 0;
    }
    
    .footer-container {
        padding: 12px;
        gap: 28px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }
    
    .footer-title {
        font-size: 22px;
    }
    
    .button-text {
        font-size: 15px;
    }
    
    .footer-column {
        gap: 10px;
    }
    
    .footer-column a,
    .footer-column div,
    .column-title {
        font-size: 13px;
    }
    
    .footer-bottom {
        font-size: 12px;
        gap: 10px;
    }
}

/* Extra Small Devices (< 320px) */
@media (max-width: 319px) {
    .footer-container {
        padding: 10px;
        gap: 24px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-title {
        font-size: 20px;
    }
    
    .footer-bottom {
        font-size: 11px;
    }
}


